hover中间往两边扩散动画

152 阅读1分钟

.item-box::after { content: ''; position: absolute; bottom: 0; left: 50%; height: 4px; width: 0%; background-color: #0a70f5; } .item-box:hover::after { left: 0%; transition: all .6s; width: 100%; background-color: #0a70f5; }

image.png