码迷,mamicode.com
首页 > 其他好文 > 详细

图片的旋转

时间:2018-04-03 14:21:17      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:log   pre   html   blog   margin   gpo   add   :hover   技术分享   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            *{
                margin: auto;
                padding: 0;
            }
            #a1{
                width: 200px;
                height: 200px;
                border: 1px solid red;
                background-image: url(../3.28/1.jpg);
                background-size: 100% 100%;
                
                transition: 2s;
                
            }
            #a1:hover{
                transform: rotate(120deg);
            }
            #a2{
                width: 200px;
                height: 200px;
                border: 1px solid red;
                background-image: url(../img/3601.png);
                background-size: 100% 100%;
                
                transition: 2s;
                
            }
            #a2:hover{
                transform: translate(30px,30px)
            }
            #a3{
                width: 200px;
                height: 200px;
                border: 1px solid red;
                background-image: url(../img/3603.png);
                background-size: 100% 100%;
                
                
            }
            #a3:hover{
                transform: scale(1.5,1.5);
                transition: 2s;
                
            }
            
        </style>
    </head>
    <body>
        <div id="a1">
            
        </div>
        <div id="a2">
            
        </div>
        <div id="a3">
            
        </div>
    </body>
</html>
技术分享图片

 

图片的旋转

标签:log   pre   html   blog   margin   gpo   add   :hover   技术分享   

原文地址:https://www.cnblogs.com/hankai2735/p/8707723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!