首页 > 代码库 > css3、js动画特效
css3、js动画特效
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .out{ width: 200px; height: 300px; -webkit-perspective:800px; margin: 0 auto; } .box{ width: 100%; height: 100%; -webkit-transform-style: preserve-3d; } img{ transition: -webkit-transform 2s ease 1s,width 1s ease 2s; -webkit-box-reflect:below 5px -webkit-gradient(linear,50% 0,50% 100%, color-stop(0,rgba(0,0,0,0)),color-stop(0.5,rgba(0,0,0,0.1)), color-stop(0.8,rgba(0,0,0,0.4)),color-stop(1,rgba(0,0,0,0.8)) ); /*above: 指定倒影在对象的上边 below: 指定倒影在对象的下边 left: 指定倒影在对象的左边 right: 指定倒影在对象的右边 5px 定义阴影和图片的距离 */ } img:hover{ -webkit-transform:rotate3d(1,1,1,45deg); width: 300px; } </style> </head> <body> <div class="out"> <div class="box"> <img src="1.jpg" width="200px" height="200px"> </div> </div> </body> </html>
css3、js动画特效
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。