H5页面如何实现图片预览的效果

news/2024/11/17 6:49:28/

使用swiper实现图片预览效果

   <div class="swiper-container" id="zoomSwiper1"><div class="swiper-wrapper"><div class="swiper-slide" style="padding-bottom: 2px;"><div class="swiper-zoom-container"><img src="{{$img['picturePath']}}" width="100%"></div></div></div></div>
$(function(){var mySwiper = new Swiper('#zoomSwiper1', {lazy: true,observer:true,observeParents:true,centeredSlides:true,minRatio:0,on: {click: function(e){if(this.$el.hasClass('active')){this.$el.removeClass("active");this.zoom.out();this.zoom.disable();}else{this.$el.addClass("active");this.zoom.enable();}}}})
})
   #zoomSwiper1{width: 100%;}#zoomSwiper1 .swiper-slide {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;}#zoomSwiper1 .swiper-slide img{width: 100%;height: auto;min-height: auto;}#zoomSwiper1.active{height: 100%;background: #000;position: fixed;z-index: 99;top: 0px;left: 0px;}#zoomSwiper1.active  #zoomSwiper1 .swiper-slide img{width: 100%;height: auto;min-height: auto;}#zoomSwiper1 .swiper-zoom-container{width: 100%;height:auto;}

http://www.ppmy.cn/news/789666.html

相关文章

HTML5+CSS3小实例:3D旋转木马相册

HTML5+CSS3做一个3D旋转木马相册,鼠标悬停时,停止旋转,移开继续旋转,大家把图片替换成自己的即可。 效果: 源码: <!DOCTYPE html> <html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"><…

麒麟软件发布全球首个ARM架构测试报告,ARM全新CPU架构Cortex-A77发布:性能提升20% 麒麟还能用吗?...

2018年对于手机处理器行业来说是兴奋的一年&#xff0c;基于ARM Cortex-A76 CPU架构设计的麒麟980、骁龙855等7nm处理器在性能上取得了长足进步&#xff0c;并成为2019年旗舰手机的主力芯片。 伴随着Computex 2019开幕&#xff0c;ARM正式宣布了新一代移动CPU架构Cortex-A77以及…

拍照/选择相册,图片压缩旋转处理

最近做项目需要用到拍照和选择相册照片&#xff0c;并显示出来imageview 上&#xff0c;然后压缩上传到服务器中&#xff0c;这本是一个非常常见的功能&#xff0c;但对于图片的处理确实一个技术活&#xff0c;稍微不注意会出现oom&#xff0c;图片压缩也要处理的刚刚好&#x…

javasxript图片预加载兼容代码(IE7/IE8/IE9/火狐/谷歌/苹果)

代码很简单 //图片预加载 function readyImage(url,callback){var img new Image(); img.srcurl;if(img.complete){ var imgWh [img.width,img.height];callback(i,imgWh);}else{img.onload function(){var imgWh [img.width,img.height];callback(i,imgWh);}} } 我看很…

A7架构

以Cortex-A7 MPCore processor来进行说明&#xff0c;这是一款主打低功耗的多核处理器&#xff0c;采用ARMv7-A架构&#xff0c;最多支持4个core。 每个core都有L1级的Cache&#xff0c;分为instruction cache&#xff0c;data cache。四个core分别连接到SCU(Snoop Control Uni…

CSS3 3D相册

今天来做一个基于CSS3 3D属性的3D相册效果。 1 基本布局 首先来完成基本布局&#xff0c;从效果图中可以看到&#xff0c;所有图片一开始均位于同一位置&#xff0c;然后经过不同的角度的旋转以及平移到不同的位置&#xff0c;达到一个”旋转散开”的效果。所以基本的思路就是…

xapian的使用

1、先来看一下Xapian的介绍&#xff1a; Xapian的官方网站是http://www.xapian.org&#xff0c;这是一个非常优秀的开源搜索引擎项目&#xff0c;搜索引擎其实只是一个通俗的说法&#xff0c;正式的说法其实是IR&#xff08;Information Retrieval&#xff09;系统。Xapian的Li…

HTML-网页-3D旋转相册-创意相册

HTML-网页-3D旋转相册 代码&#xff1a; <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><title>3D旋转相册</title><style>*{margin: 0;padding: 0;}html,body{height: 100%;}body{overflow: h…