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{
                100px9;
            }
        </style>
        <script>
            $(function(){
                $(".box").hover(function(){
                    $(this).animate({180},500)
                },function(){
                    $(this).animate({120},500)
                });
            });
        </script>
   <![endif]-->

该过渡效果兼容各个浏览器,比如IE5,IE6,IE7,IE8等。

原文地址:https://www.cnblogs.com/hezihao/p/6403559.html