欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

纯css实现元素下出现横线动画(background-image)

程序员文章站 2022-06-05 16:02:15
效果图: html:
首页
css: .site_bar{ background-image : linear-gradient(red,red); background-position : center bottom; background ......

效果图:

纯css实现元素下出现横线动画(background-image)

html:

<div class='site_bar'>首页</div>

css:

.site_bar{

  background-image : linear-gradient(red,red);

  background-position : center bottom;

  background-size : 0 2px;

  background-repeat : no-repeat;  //这个属性不能少。

  transition : .3s;

}

.site_bar:hover{

  background-size : 100% 2px;

}