在写pc端页面时,用swiper插件发现在ie中用不了,百度下说是swiper从3以后向手机端发展,所以在pc端无响应。后来了解到,swiper3是专门针对移动端写的。如果想兼容ie8的话,应该引入swiper2.
也就是:idangerous.swiper.js
官网演示地址:
swiper2下载地址
链接:https://pan.baidu.com/s/1rwhj1scbcjvf4wfbrq_myg 密码:qcuw
参考源码:
css:
<link rel="stylesheet" type="text/css" />
js
<script src="../js/idangerous.swiper.js" type="text/javascript" charset="utf-8"></script>
html
<div class="container-middle-solution">
<div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div> <a class="title">网络解决方案</a> </div> <div>我们做响应网站,网页开发,区块链开发,ui/ux设计,crm解决方案,托管服务器解决方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>移动解决方案</div> <div>我们做ios应用开发,android应用开发,混合app开发以及移动应用市场咨询。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>网络解决方案</div> <div>我们做响应网站,网页开发,区块链开发,ui/ux设计,crm解决方案,托管服务器解决方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>网络解决方案</div> <div>我们做响应网站,网页开发,区块链开发,ui/ux设计,crm解决方案,托管服务器解决方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>网络解决方案</div> <div>我们做响应网站,网页开发,区块链开发,ui/ux设计,crm解决方案,托管服务器解决方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>网络解决方案</div> <div>我们做响应网站,网页开发,区块链开发,ui/ux设计,crm解决方案,托管服务器解决方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>网络解决方案</div> <div>我们做响应网站,网页开发,区块链开发,ui/ux设计,crm解决方案,托管服务器解决方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> </div> <!-- add arrows --> <!--<div class="icon-left">--> <!--<div class="swiper-button-next"></div> <div class="swiper-button-prev"></div>--> <a class="arrow-left" ></a> <a class="arrow-right" ></a> </div> </div>
<script type="text/javascript">
var swiper = new swiper('.swiper-container', {
// slidesperview: "auto",
slidesperview: 2,
spacebetween: 0,
// mode: 'vertical', //2版本垂直滑动
// direction: 'vertical', //3版本垂直滑动
// pagination: {
// el: '.swiper-pagination',
// clickable: true,
// },
navigation: {
nextel: '.swiper-button-next',
prevel: '.swiper-button-prev',
},
});
$('.arrow-left').on('click', function(e) {
e.preventdefault();
swiper.swipeprev();
})
$('.arrow-right').on('click', function(e) {
e.preventdefault();
swiper.swipenext();
})
</script>
css样式问题
.swiper-container {
width: 100%;
padding-bottom: 100px;
}
/*.swiper-slide {
background-position: center;
background-size: cover;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}*/
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
background: url(../img/index-left.png) center center no-repeat;
background-size: 100%;
100%;
left: 52px;
right: auto;
top: 220px;
width: 54px;
height: 54px;
}
/*.arrow-left {
background: url(../img/index-left.png) center center no-repeat;
background-size: 100%;
100%;
left: 52px;
right: auto;
top: 220px;
width: 54px;
height: 54px;
}*/
.arrow-left {
background: url(../img/index-left.png) no-repeat left top;
position: absolute;
left: 36px;
top: 180px;
margin-top: -15px;
width: 54px;
height: 54px;
background-size: 100% 100%;
}
.arrow-right {
background: url(../img/index-right.png) no-repeat left bottom;
position: absolute;
/* right: 10px; */
left: 110px;
top: 180px;
margin-top: -15px;
width: 54px;
height: 54px;
background-size: 100% 100%;
}
效果

注意:在引用css2.0是有些样式之前写的4.0的,所以样式要改,要不然起冲突
渣渣超人i