CSS3過渡效果 兼容IE6、IE7、IE8


<style>
    .box{
        width:120px;height:40px;background:yellowgreen;line-height:40px;transition:width 1s;cursor:pointer;
    }
   .box:hover{
        width:180px;
    }
</style>
<div class="box">Hello World</div>
 <!--[if lte IE 8]> 
        <style>
            .box:hover{
                width:100px\9;
            }
        </style>
        <script>
            $(function(){
                $(".box").hover(function(){
                    $(this).animate({width:180},500)
                },function(){
                    $(this).animate({width:120},500)
                });
            });
        </script>
   <![endif]-->

該過渡效果兼容各個瀏覽器,比如IE5,IE6,IE7,IE8等。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM