CSS3动画 transition 过渡,宽度由中间向两边发生过渡

css

.tapered_line{
    width: 36px;
    height: 4px;
    background: #1e88e5;
    transition: width 3s;
    margin: 10px auto 0;
}
.main4 ul li:hover .tapered_line{
    width: 220px;
    margin:10px auto 0;
}

 

posted @ 2017-07-14 13:50  和路雪  阅读(9042)  评论(0编辑  收藏  举报