目录

垂直Swiper(Vertical Swiper)

描述 (Description)

它在两张幻灯片之间提供空间。

例子 (Example)

以下示例演示了Framework7中幻灯片之间空间的使用 -

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1, 
         maximum-scale = 1, minimum-scale = 1, user-scalable = no, minimal-ui" />
      <meta name = "apple-mobile-web-app-capable" content = "yes" />
      <meta name = "apple-mobile-web-app-status-bar-style" content = "black" />
      <title>With space between slides</title>
      <link rel = "stylesheet" 
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css" />
      <link rel = "stylesheet" 
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css" />
   </head>
   <body>
      <div class = "views">
         <div class = "view view-main">
            <div class = "pages">
               <div data-page = "home" class = "page navbar-fixed">
                  <div class = "navbar">
                     <div class = "navbar-inner">
                        <div class = "left"> </div>
                        <div class = "center">Space Between Slides</div>
                        <div class = "right"> </div>
                     </div>
                  </div>
                  <div class = "page-content">
                     <div class = "swiper-container">
                        <div class = "swiper-wrapper">
                           <div class = "swiper-slide"><span>Slide 1</span></div>
                           <div class = "swiper-slide"><span>Slide 2</span></div>
                           <div class = "swiper-slide"><span>Slide 3</span></div>
                           <div class = "swiper-slide"><span>Slide 4</span></div>
                        </div>
                        <div class = "swiper-pagination"></div>
                     </div>
                  </div>
               </div>
            </div>
         </div>
      </div>
      <script type = "text/javascript" 
         src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"></script>
      <style>
         .swiper-container {
            height:100%;
         }
         .swiper-slide {
            background:#fff;
         }
         .swiper-slide span {
            text-align:center;
            display:block;
            margin:20px;
            font-size:21px;
         }
      </style>
      <script>
         var myApp = new Framework7();
         var mySwiper = myApp.swiper('.swiper-container', {
            pagination:'.swiper-pagination',
            spaceBetween: 100
         });
      </script>
   </body>
</html>

输出 (Output)

让我们执行以下步骤,看看上面给出的代码是如何工作的 -

  • 将上面给出的HTML代码保存为服务器根文件夹中的with_space_between_slides.html文件。

  • 以http://localhost/with_space_between_slides.html打开此HTML文件,输出显示如下。

  • 运行代码时,它将通过保持幻灯片之间的空间来提供滑块。

新页面打开
↑回到顶部↑
WIKI教程 @2018