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

轮播图公共样式提取

时间:2017-10-03 10:33:13      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:inline   height   play   hidden   tor   控制   osi   otto   bottom   

/*轮播图公共样式*/
/*
一个页面可能出现多个结构相同的轮播图
把结构公共部分的代码提取出来,
调用公共结构后,只需要另外自定义一个控制大小的类名引用即可;
*/
.banner-box {
position: relative;
overflow: hidden;
/*
同级定义一个控制大小的类
big-banner {
width: 810px;
height: 325px;
*/
.img-box {
/*
这里需要控制图片盒子ul的宽度
.img-box {
width: 1620px;
height: 325px;
}
*/
li {
float: left;
width: 50%;
height: 100%;
a {
display: block;
width: 100%;
height: 100%;
img {
width: 100%;
height: 100%;
}
}
}
}
.banner-indicator {
width: 100%;
text-align: center;
position: absolute;
left: 0;
bottom: 30px;
.indicator-btn {
display: inline-block;
margin: 0 3px;
width: 30px;
height: 5px;
background-color: #fff;
}
.indicator-btn.active{
background-color: #FF7700;
}
}
}
设置的单独样式
.mk-banner {
  轮播图的容器盒子

.big-banner {
width: 810px;
height: 325px;
margin-left: 189px;
    放图片的大盒子ul
.img-box {
    n张图片就是最外层容器的n倍

width: 200%;
height: 325px;
}
}
}

轮播图公共样式提取

标签:inline   height   play   hidden   tor   控制   osi   otto   bottom   

原文地址:http://www.cnblogs.com/hello321/p/7623270.html

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