我想在导航按钮后面添加一个圆圈。但我无法实现它。我正在使用Swiper。
当我在导航箭头下方定位圆圈时,这些是快照。
正如您所看到的,当我调整::之前的margin-left时,背景圆圈会超出导航按钮。我在css之前使用伪::来创建圆圈。但我无法实现它。这是我的css工作。请检查一下,让我知道,我在哪里做错了?
.content .swiper-button-next {
height: 25px;
padding-left: 62px;
padding-top: 0px;
margin-top: -13px;
z-index: 4 !important;
position: absolute;
}
.swiper-button-next.swiper-button-white{
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%…2L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
right: 10px;
left: auto;
}
.swiper-button-next, .swiper-button-prev {
top: 50%;
width: 27px;
cursor: pointer;
background-size: 27px 44px;
background-position: center;
background-repeat: no-repeat;
}
.content .swiper-button-next:before {
content: '';
display: inline-block;
width: 50px;
height: 50px;
-moz-border-radius: 50%;
border-radius: 50%;
margin-left: -53px;
margin-top: -11px;
opacity: 0.7;
z-index: -2;
position: relative;
background: #080808;
}

<div class="content swiper-container-horizontal swiper-container-free-mode">
<div class="swiper-button-next swiper-button-white"></div>
</div>
&#13;
提前谢谢。
答案 0 :(得分:1)
.swiper-button-next:before {
content: '';
display: inline-block;
width: 50px;
height: 50px;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: #060606;
margin-left: -53px;
margin-top: -11px;
opacity: 0.8;
z-index: -2;
position: relative;
}
.swiper-button-next {
height: 25px;
padding-left: 62px;
padding-top: 0px;
margin-top: -13px;
z-index: 4 !important;
position: absolute;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%…2L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
right: 10px;
left: auto;
top: 50%;
width: 27px;
cursor: pointer;
background-size: 27px 44px;
background-position: center;
background-repeat: no-repeat;
}
.arrow{ width: auto;
display: inline-block;
position: absolute;
z-index: 9999;
left: 31px;
vertical-align: middle;
color: #ffffff;
opacity: 0.3;
font-size:20px;
}
<div class="swiper-button-next swiper-button-white"><div class="arrow">❯<div></div>
答案 1 :(得分:1)
请从z-index
div中移除.swiper-button-next
以解决问题。
.swiper-button-next:before {
content: '';
display: inline-block;
width: 50px;
height: 50px;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: #060606;
margin-left: -53px;
margin-top: -11px;
opacity: 0.8;
z-index: -2;
position: relative;
}
.swiper-button-next {
height: 25px;
padding-left: 62px;
padding-top: 0px;
margin-top: -13px;
position: absolute;
background-image: url(http://www.clker.com/cliparts/C/n/U/D/t/D/transparent-arrow-hi.png);
right: 10px;
left: auto;
top: 50%;
width: 27px;
cursor: pointer;
background-size: 27px 44px;
background-position: center;
background-repeat: no-repeat;
}
<div class="swiper-button-next swiper-button-white"></div>
答案 2 :(得分:0)
您可以将符号放在content
的{{1}}属性中:
pseudoelement
&#13;
.swiper-button-next {
height: 25px;
padding-left: 62px;
padding-top: 0px;
margin-top: -13px;
z-index: 4 !important;
position: absolute;
right: 10px;
left: auto;
top: 50%;
width: 27px;
cursor: pointer;
text-align: center;
}
.swiper-button-next:before {
content: '>';
color: white;
display: inline-block;
width: 50px;
height: 50px;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: #060606;
margin-left: -53px;
margin-top: -11px;
opacity: 0.8;
z-index: -2;
position: relative;
line-height: 50px; /* vertically center the symbol */
}
&#13;
答案 3 :(得分:0)
请检查一下这个代码片段,我已经改变了你的代码
.swiper-button-next::before {
background-image: url("http://www.iconsdb.com/icons/preview/white/arrow-30-xxl.png");
background-repeat: no-repeat;
background-size: 24px 29px;
content: "";
display: inline-block;
height: 50px;
margin-top: 10px;
opacity: 0.8;
position: relative;
right: -15px;
width: 22px;
z-index: -2;
}
.swiper-button-next {
padding-top: 0px;
margin-top: -13px;
z-index: 4 !important;
position: absolute;
width: 50px;
height: 50px;
-moz-border-radius: 50%;
border-radius: 50%;
background-color: #060606;
right: 10px;
left: auto;
top: 50%;
cursor: pointer;
}
&#13;
<div class="swiper-button-next swiper-button-white"></div>
&#13;