首页 > Web开发 > 详细

css3图片旋转

时间:2015-03-18 12:08:00      阅读:386      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>css3实现社交图标旋转效果</title>
</head>

<style>

    #container { width: 960px; margin: 0 auto; }    
    
    ul { width: 145px; margin: 0 auto; list-style: none; font-size: 0px; }
    
    li a { background: url(images/sprite.png) no-repeat; background-position: -55px 0; display: block; text-indent: -9999px; margin-top: 15px; }
    li a span { background: url(images/sprite.png) no-repeat; display: block; width: 30px; height: 32px; position: relative; z-index: 10;
        -webkit-transition: -webkit-transform 0.4s ease-out;
        -moz-transition: -moz-transform 0.4s ease-out;
        transition: transform 0.4s ease-out;
    }
    li a:hover span {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    
    li.twitter a { background-position: -55px 0; width: 127px; height: 32px; }
    li.twitter a span { background-position: 0 0; }

</style>

<body>    

<div id="container">

    <h1></h1>
    
    <ul id="social" class="group">
        
        <li class="twitter"><a href="#"><span></span>
        twitter</a></li>
    
    </ul>
</body>
</html>

 

 

li a span { background: url(images/sprite.png) no-repeat; display: block; width: 30px; height: 32px; position: relative; z-index: 10;
        -webkit-transition: -webkit-transform 0.4s ease-out;
        -moz-transition: -moz-transform 0.4s ease-out;
        transition: transform 0.4s ease-out;
    }
    li a:hover span {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }

 

css3图片旋转

原文:http://www.cnblogs.com/hellman/p/4346490.html

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