CSS3 animations can now replace simple Flash effects, with high performance and ease of implementation on mobile devices, and good compatibility! This page's animation library comes from the internet, collecting common CSS3 animation effects, offering 74 common animations. These animations are often used when we only create PPTs! Select the corresponding animation to get the animation CSS code! This way, you don't need to download the entire animation library; just copy the CSS code for the effect you need! Only supported
.animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both } @-webkit-keyframes flash { 0%,100%,50% { opacity: 1 } @keyframes flash { 0%,100%,50% { opacity: 1 } .flash { -webkit-animation-name: flash; animation-name: flash }
事例代码: <div class="animated flash ">测试</div> ;flash 可以用其它动作名称代替
You recently used: