今天才发现?调试了半天不出效果,放Chrome上就出来了
h1:before{
content: "";
position: absolute;
width: 100%;
height: 5px;
bottom: 0;
left: 0;
background-color: red;
-webkit-transform: scaleX(0);
-webkit-transition: 0.6s ease;
}
h1:hover:before{
-webkit-transform: scaleX(0.1);
}