jQuery实现文章图片弹出放大效果


Posted in jQuery onApril 06, 2017

首先先搭写一个基本的格式:

$.fn.popImg = function() {
  //your code goes here
}

然后用自调用匿名函数包裹你的代码,将系统变量以变量形式传递到插件内部,如下:

;(function($,window,document,undefined){
  $.fn.popImg = function() {
   //your code goes here
  }
})(jQuery,window,document);

那么接下来我们就在里面实现点击文章图片弹出该图片并放大的效果。

整体代码如下:

;(function($,window,document,undefined){
 $.fn.popImg = function(){

   //创建弹出层
   var $layer = $("<div>").css({
    position:'fixed',
    left:0,
    right:0,
    top:0,
    bottom:0,
    width:'100%',
    height:'100%',
    zIndex:9999999,
    display:'none',
    background: "#000",
    opacity:'0.6'
   });

   //复制点击的图片,获得图片的宽高以及位置
   var cloneImg = function($targetImg){
     var cloneW = $targetImg.width(),
       cloneH = $targetImg.height(),
       left = $targetImg.offset().left,
       top = $targetImg.offset().top;

     return $targetImg.clone().css({
       position:'fixed',
       width:cloneW,
       height:cloneH,
       left:left,
       top:top,
       zIndex:10000000
     });
   };

   //让复制的图片居中显示
   var centerImg = function($cloneImg){
     var dW = $(window).width();
     var dH = $(window).height();
     $cloneImg.css('cursor','zoom-out').attr('clone-bigImg',true);
     var img = new Image();
     img.onload = function(){
      $cloneImg.stop().animate({
         width: this.width,
        height: this.height,
        left: (dW - this.width) / 2,
        top: (dH - this.height) / 2
      },300);
     }
     img.src = $cloneImg.attr('src');
   };

   this.each(function(){
     $(this).css('cursor','zoom-in').on('click',function(){
       var $body = $("body");
       $layer.appendTo($body);
       $layer.fadeIn(300);
       var $c = cloneImg($(this));
       $c.appendTo($body);
       centerImg($c);
     });
   });

  var timer = null;
  $(window).on("resize", function(){
   $("img[clone-bigImg]").each(function(){
    var $this = $(this);
    timer && clearTimeout(timer);
    timer = setTimeout(function(){
     centerImg($this);
    }, 10);
   });
  });

  $(window).on("click keydown", function(evt){
   if(evt.type == "keydown" && evt.keyCode === 27) {
    $layer.fadeOut(300);
    $("img[clone-bigImg]").remove();
   }
   var $this = $(evt.target);
   if($this.attr("clone-bigImg")){
    $layer.fadeOut(300);
    $("img[clone-bigImg]").remove();
   }
  });
 }
})(jQuery,window,document);

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持三水点靠木!

jQuery 相关文章推荐
纯jQuery实现前端分页功能
Mar 23 jQuery
jQuery插件开发发送短信倒计时功能代码
May 09 jQuery
jQuery实现简单的手风琴效果
Apr 17 jQuery
jQuery实现frame之间互通的方法
Jun 26 jQuery
基于jQuery实现的Ajax 验证用户名唯一性实例代码
Jun 28 jQuery
运用jQuery写的验证表单(实例讲解)
Jul 06 jQuery
jquery+css实现简单的图片轮播效果
Aug 07 jQuery
全面解析jQuery中的$(window)与$(document)的用法区别
Aug 15 jQuery
jquery实现回车键触发事件(实例讲解)
Nov 21 jQuery
jQuery实现的简单拖拽功能示例【测试可用】
Aug 14 jQuery
jQuery事件绑定和解绑、事件冒泡与阻止事件冒泡及弹出应用示例
May 13 jQuery
JQuery中DOM节点的操作与访问方法实例分析
Dec 23 jQuery
jQuery自定义图片上传插件实例代码
Apr 04 #jQuery
jQuery使用unlock.js插件实现滑动解锁
Apr 04 #jQuery
利用jquery正则表达式在页面验证url网址输入是否正确
Apr 04 #jQuery
jQuery中animate()的使用方法及解决$(”body“).animate({“scrollTop”:top})不被Firefox支持的问题
Apr 04 #jQuery
使用jQuery卸载全部事件的思路详解
Apr 03 #jQuery
jQuery实现分页功能(含ajax请求、后台数据、附完整demo)
Apr 03 #jQuery
基于JQuery和原生JavaScript实现网页定位导航特效
Apr 03 #jQuery
You might like
php制作简单模版引擎
2016/04/07 PHP
php使用ffmpeg向视频中添加文字字幕的实现方法
2016/05/23 PHP
PDO的安全处理与事物处理方法
2016/10/31 PHP
PHP获取访问页面HTTP状态码的实现代码
2016/11/03 PHP
PHP正则之正向预查与反向预查讲解与实例
2020/04/06 PHP
js option删除代码集合
2008/11/12 Javascript
网页上的Javascript编辑器和代码格式化
2010/04/25 Javascript
让新消息在网页标题闪烁提示的jQuery代码
2013/11/04 Javascript
JS实现鼠标经过好友列表中的好友头像时显示资料卡的效果
2014/07/02 Javascript
Javascript添加监听与删除监听用法详解
2014/12/19 Javascript
Bootstrap每天必学之标签与徽章
2015/11/27 Javascript
JavaScript中的事件委托及好处
2016/07/12 Javascript
Node.js 数据加密传输浅析
2016/11/16 Javascript
详解操作虚拟dom模拟react视图渲染
2018/07/25 Javascript
vue input输入框关键字筛选检索列表数据展示
2020/10/26 Javascript
微信小程序实现Swiper轮播图效果
2019/11/22 Javascript
Python实现同时兼容老版和新版Socket协议的一个简单WebSocket服务器
2014/06/04 Python
Python随机生成信用卡卡号的实现方法
2015/05/14 Python
Django + Uwsgi + Nginx 实现生产环境部署的方法
2018/06/20 Python
把pandas转换int型为str型的方法
2019/01/29 Python
Python列表对象实现原理详解
2019/07/01 Python
python利用re,bs4,requests模块获取股票数据
2019/07/29 Python
python异常处理之try finally不报错的原因
2020/05/18 Python
Python自定义聚合函数merge与transform区别详解
2020/05/26 Python
HTML5 Web Database 数据库的SQL语句的使用方法
2012/12/09 HTML / CSS
领先的荷兰线上超市:荷兰之家Holland at Home(支持中文)
2021/01/21 全球购物
信息专业学生学习的自我评价
2014/02/17 职场文书
企业环保标语
2014/06/10 职场文书
有限责任公司股东合作协议书范本
2014/10/30 职场文书
悬空寺导游词
2015/02/05 职场文书
2015年安置帮教工作总结
2015/05/22 职场文书
Django如何创作一个简单的最小程序
2021/05/12 Python
面试必问:圣杯布局和双飞翼布局的区别
2021/05/13 HTML / CSS
MYSQL 无法识别中文的永久解决方法
2021/06/03 MySQL
Spring boot应用启动后首次访问很慢的解决方案
2021/06/23 Java/Android
python使用matplotlib绘制图片时x轴的刻度处理
2021/08/30 Python