|
通过myswiper.prependSlide()方法新创建出来的slide在放大的时候不能拖动查看
- <!DOCTYPE html>
- <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 Swiper's CSS -->
- <link rel="stylesheet" href="dist/css/swiper.min.css">
- <!-- Demo styles -->
- <style>
- html, body {
- position: relative;
- height: 100%;
- }
- body {
- background: #000;
- font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
- font-size: 14px;
- color:#000;
- margin: 0;
- padding: 0;
- }
- .swiper-container {
- width: 100%;
- height: 100%;
- }
- .swiper-slide {
- overflow: hidden;
- }
- </style>
- </head>
- <body>
- <!-- Swiper -->
- <div class="swiper-container">
- <div class="swiper-wrapper">
-
- </div>
- <!-- Add Pagination -->
- <div class="swiper-pagination swiper-pagination-white"></div>
- <!-- Add Navigation -->
- <div class="swiper-button-prev"></div>
- <div class="swiper-button-next"></div>
- </div>
- <!-- Swiper JS -->
- <script src="dist/js/swiper.min.js"></script>
- <!-- Initialize Swiper -->
- <script>
- var swiper = new Swiper('.swiper-container', {
- zoom: true,
- pagination: '.swiper-pagination',
- nextButton: '.swiper-button-next',
- prevButton: '.swiper-button-prev'
- });
- for(var i=0;i<4;i++){
- swiper.appendSlide('<div class="swiper-slide"><div class="swiper-zoom-container"><img src="http://lorempixel.com/800/800/sports/1"></div></div>');
- }
- swiper.update();
-
- </script>
- </body>
- </html>
复制代码
|
|