博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
swiper一组图片,点击图片出现中间,看效果
阅读量:5732 次
发布时间:2019-06-18

本文共 1755 字,大约阅读时间需要 5 分钟。

好兄弟先看看效果是这样的么

点击哪个头像,头像移动到中间,然后放大,demo上写了五条数据

废话不多说 直接上代码

1.引入swiper.css,

swiper.js

2.HTML(小弟做的是移动端的,所以meta-viewport要引入哦)

  3.CSS

 

/*banner*/ body{
  width:375px; }.iconBanner{ width: 85%; margin: 0.11rem auto; height: 0.65rem;}.swiper-container { width: 100%; height: 0.65rem;}.swiper-slide { width: 0.4rem; height: 0.65rem; background-position: center; background-size: cover; transition: all 1s; /* Center slide text vertically */ 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-slide img { width: 0.4rem; height: 0.4rem; border-radius: 50%;}.swiper-slide.swiper-slide-active { transform: scale(1.5); z-index: 2;}.layui-bg-red{ background:linear-gradient(0deg,#D9AC6A,#F5DFBD);}.layui-progress-big .layui-progress-text{ position: relative; color: #C6B56B; font-size: 0.14rem; line-height: 0.25rem; padding: 0; top: -0.3rem; left: 0.1rem;}

  4.JS

先把屏幕自适应的js加上

  接下来就是终极杀手锏js,kan!

var swiper = new Swiper('.swiper-container', {		loop: true,		slidesPerView: '5', //设置slider容器能够同时显示的slides数量		// active下 居中显示		centeredSlides: true,		noSwiping: true, //设置为true时禁止切换		slideToClickedSlide: true,	});

  复制粘贴,搞定,自己玩儿吧

转载于:https://www.cnblogs.com/wangfugui/p/10205204.html

你可能感兴趣的文章
使用shell脚本生成数据库markdown文档
查看>>
centos和pycharm中取绝对路径的差别
查看>>
ext2磁盘布局
查看>>
MySql数据库2【常用命令行】
查看>>
安装、进程-云计算学习笔记---hadoop的简介,以及安装,用命令实现对hdfs系统进行文件的上传下载-by小雨...
查看>>
动态规划---->货郎担问题
查看>>
添加虚拟子网
查看>>
Ubuntu 12.04 root用户登录设置
查看>>
存储过程点滴
查看>>
Maven编译跳过test的设置
查看>>
SQLyog图形化l数据库的操作和学习
查看>>
raspbian 怎么才能有声音?
查看>>
[LeetCode]22.Generate Parentheses
查看>>
《数据结构》—— 线性表(上)
查看>>
WEB前端 CSS选择器
查看>>
计算A/B Test需要的样本量
查看>>
二叉树前序中序后序遍历的非递归方法
查看>>
nginx+tomcat实现负载均衡
查看>>
mysql 行转列列转行
查看>>
《设计模式系列》---桥接模式
查看>>