移动端触摸滑动插件swiper使用方法详解
(编辑:jimmy 日期: 2024/11/15 浏览:3 次 )
Swiper是移动端的一款非常强大的触摸滑动插件,下面代码只展示一些常用的配置,具体可以查看官网api
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <link rel="stylesheet" href="swiper.min.css" rel="external nofollow" > <style> /*假设设计稿是640 轮播图区域640*300*/ html{ font-size:100px; } html,body{ width:100%; overflow-x:hidden; } .swiper-container{ margin:0 auto; height:3rem; overflow:hidden; } .swiper-slide{ height:3rem; } .swiper-slide img{ width:100%; height:100%; } </style> </head> <body> <section class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <img class='swiper-lazy' data-src="/UploadFiles/2021-04-02/banner1.jpg">以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇:Echarts基本用法_动力节点Java学院整理