美文网首页
jQuery插件elevateZoom简单使用

jQuery插件elevateZoom简单使用

作者: 不知道取个什么昵称不如娶个媳妇 | 来源:发表于2018-10-10 11:47 被阅读45次

elevateZoom 其实很强大,但是,如果你的网速不给力,就会出现卡顿问题,这一点深有体会。屁话就说这么多。现在开始开车,前排的乘客注意系好安全带,呸。。。
传送门 网速慢卡就不要打开了,浪费时间
elevateZoom是一个jquery插件,所以要依赖jquery才能使用,敲黑板划重点。

上代码:

<script src="jquery.js"></script>
<script src="jquery.elevateZoom-3.0.8.min.js"></script>

<img id="img-big" src="middle.jpg" alt="" data-zoom-image="big.jpg">
                                        
<div id="small">

    <a href="#" data-image = "middle.jpg" data-zoom-image="big.jpg">
        <img src="small.jpg" alt="">
    </a>
                                                    
</div>
<script>
   $("#img-big").elevateZoom({
          gallery:'small', //注意相关dom元素对应关系
          cursor: 'pointer'
        });
</script>

相关文章

  • jQuery插件elevateZoom简单使用

    elevateZoom 其实很强大,但是,如果你的网速不给力,就会出现卡顿问题,这一点深有体会。屁话就说这么多。...

  • 07-JQuery插件应用

    本教程主要以Jquery UI为例,简单介绍Jquery插件的使用。 使用JQuery UI提供的基本功能,需要如...

  • jquery 滚轮插件 jquery.mousewheel.js

    jquery.mousewheel插件使用 jquery中没有鼠标滚轮事件,那么可以使用jquery的滚轮事件插件...

  • cookie.js随记

    cookie: 使用jquery的插件:jquery.cookie.js库: jquery.js插件:jquer...

  • 文件上传

    1.使用jquery的 ajaxFileLoad插件 2.使用jquery-flile-uplaod插件 3.aj...

  • PC端好用的分页插件jquery.pagination.js使用

    jquery.pagination.js是一款轻量级的分页插件,依赖JQuery,使用起来方便简单。效果图如下: ...

  • jquery chosen插件使用及select常用方法

    1、chosen插件使用 chosen插件依赖于jQuery库或prototype,使用之前要先引入jQuery或...

  • jQuery日历插件开发

    在jquery的学习中,经常碰到使用jQuery插件的使用,后来想着自己应该动手写一个jQuery插件,提高自己的...

  • jQuery插件

    1.jQuery插件 jQuery 插件简单的就是一个用于扩展 jQuery 的 prototype 对象的新方法...

  • 2018-01-12

    typescript使用jquery的步骤 1、安装jquery插件:npm install jquery --s...

网友评论

      本文标题:jQuery插件elevateZoom简单使用

      本文链接:https://www.haomeiwen.com/subject/tdlpaftx.html