首页 > 其他 > 详细

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

时间:2018-03-13 00:22:04      阅读:301      评论:0      收藏:0      [点我收藏+]

 

<!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>

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

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!