码迷,mamicode.com
首页 > 其他好文 > 详细

轮播图的小圆圈鼠标移上去变样式

时间:2018-03-13 00:55:46      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:post   bubuko   http   back   round   pos   样式   body   form   

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<style>
ul{
width: 150px;
height: 20px;
margin: 0 auto;

}
ul li{
width: 10px;
height: 10px;
border: 2px solid transparent;
float: left;
background-color: #ccc;
margin-left: 10px;
border-radius: 50%;
transition: all 1s;
list-style: none;
}
ul li:hover{
border: 2px solid red;
transform: scale(1.3);
background-color: transparent;
}
</style>
</head>
<body>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</body>
</html>

原图:技术分享图片移上去:技术分享图片

轮播图的小圆圈鼠标移上去变样式

标签:post   bubuko   http   back   round   pos   样式   body   form   

原文地址:https://www.cnblogs.com/yuanyuan-1994/p/8552355.html

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