使用swiper轮播插件,遇到三个问题
1 . 自带按钮,只能出现在轮播区域内 , 因为轮播盒子swiper-container设置了overflow:hidden
2 . 同屏显示多个轮播页 , 在宽度不同的的情况下,会出现收尾轮播页溢出被覆盖的情况
3 . (如果想留出空隙 , 给轮播加背景) , 无法给轮播盒子swiper-container设置padding , 会导致子轮播页显示不完整
<html lang="en">
<head>
<meta charset="utf-8">
<title>Swiper demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<link rel="stylesheet" href="./swiper/css/swiper.min.css">
<style>
html,
body {
position: relative;
width: 100%;
height: 100%;
}
body {
background: #eee;
margin: 0;
padding: 0;
}
.box {
width: 80%;
height: 50%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;