您当前的位置:首页 > css知识 > css3知识

色块由0到最宽

时间:2026-03-18 19:45:15    来源:    作者:
.wrap::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    transition-property: all;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
    background: #0c64b3;
    opacity: 0.7;
}

.product:hover .wrap::after {
    width: 100%;
}
推荐资讯