码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-12-05 21:01:57      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:red   otto   round   100%   near   css   bsp   site   com   

效果图:

技术分享图片

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;

}

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

标签:red   otto   round   100%   near   css   bsp   site   com   

原文地址:https://www.cnblogs.com/zhucj/p/10072480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!