CSS3动画效果_html/css_WEB-ITnose
程序员文章站
2022-04-20 13:53:33
...
渐隐渐显 @-webkit-keyframes cf3FadeInOut { 0% { opacity:1; } 20% { opacity:.8; } 50% { opacity:0.5; } 70%{ opacity: .3;} 100% { opacity:0; } } div.bg { -webkit-animation-name: cf3FadeInOut; -webkit-animation-timing-function: ease-in-out; -webkit-animation-iteration-count: 1; -webkit-animation-duration: 3s; }
晃动
.hand-animate { -webkit-animation: hand_move infinite 2s; } @-webkit-keyframes hand_move { 0% { -webkit-transform: rotate(0); -moz-transform: rotate(0); -ms-transform: rotate(0); -o-transform: rotate(0); transform: rotate(0); } 50% { -webkit-transform: rotate(15deg); -moz-transform: rotate(15deg); -ms-transform: rotate(15deg); -o-transform: rotate(15deg); transform: rotate(15deg); } 100% { -webkit-transform: rotate(0); -moz-transform: rotate(0); -ms-transform: rotate(0); -o-transform: rotate(0); transform: rotate(0); } }推荐阅读
-
支持多浏览器的镜像反转css效果_html/css_WEB-ITnose
-
并排2个DIV达到并排2个frame效果_html/css_WEB-ITnose
-
这样的下拉效果如何实现?_html/css_WEB-ITnose
-
纯CSS3制作九款可爱复古相机_html/css_WEB-ITnose
-
CSS3边框旋转动画实现效果
-
纯CSS3炫酷3D折叠面板动画特效_html/css_WEB-ITnose
-
CSS3 HTML_html/css_WEB-ITnose
-
基于纯 CSS3 技术实现美观的标签云效果_html/css_WEB-ITnose
-
css3购物网站商品文字提示实例_html/css_WEB-ITnose
-
CSS3 背景_html/css_WEB-ITnose