1-Visitor
December 30, 2020
Question
Keyframes animation of elements in Vuforia Studio
- December 30, 2020
- 1 reply
- 888 views
Hi, I am currently working on a mobile app and have issues with animations using Keyframes in css. As shown in the video, the animation shown in preview in Vuforia studio works multiple times but not in Vuforia View. Below is the css code used. Where I have binded a button to show the 'notipop' popup.
.notipop{
animation: slideupwards ease 0.5s;
}
@keyframes slideupwards{
0%{
bottom: -100%;
}
100%{
bottom:0%;
}
}
Any help would be much appreciated!

