Button animation not working inside of card
See original GitHub issueI have a button inside of a card-footer
:
<div class="card blue">
<div class="card-content">
<h1>{{ theme.name }}</h1>
</div>
<div class="card-footer">
<p>Built by {{ theme.author }}</p>
<a class="waves-effect waves-light btn"><i class="mdi-file-cloud"></i>View Theme</a>
</div>
</div>
When I press the button, the wave effect is not invoked.
If I take the a
and place it outside the card-footer
, the wave effect is invoked as expected.
How can I maintain the wave effect inside of a card-footer
? Thank you.
Issue Analytics
- State:
- Created 9 years ago
- Comments:26 (4 by maintainers)
Top Results From Across the Web
android - How to slide out a button inside a cardview?
GONE . In another attempt, I called viewHolder.button.animate().x(some_number) in the adapter, but it did nothing as well.
Read more >(RESOLVED) - Struggling with 'button-card' - Frontend
Hi all, I'm using a theme with more or less transparent cards. I want to achieve follwing (if possible): Name of card above...
Read more >Animated buttons and flexbox button wrappers - Webflow
A button is an element that links to pages, page sections (anchors), external links, emails, assets, and telephone numbers.
Read more >CSS Card with hover animation and mobile fallback - YouTube
Another fun animated card that I created: https://youtu.be/YmyqlM13JUUTransition / Animation performance: ...
Read more >Animated Post Cards Opening on Click with javascript and css
Learn how to create the effect of expanding or shrinking a container, a post or a box with simple css and javascript.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ByteBlast Hi, you can trigger the wave effect by adding this into your controller :
@razvanioan - The async behavior seems to be true with Aurelia as well. I had the same issue with animations and it started working once I explicitly called Waves.displayEffect();.
Thank you.