首页 > Web开发 > 详细

css3、js动画特效

时间:2017-06-09 20:05:45      阅读:264      评论:0      收藏:0      [点我收藏+]
<!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动画特效

原文:http://www.cnblogs.com/jinsuo/p/6973328.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!