jQuery圖片縮放外掛程式-smartZoom使用

來源:互聯網
上載者:User

標籤:ack   縮放   rip   blog   地址   doc   位置   height   直接   

 e-smart-zoom-jquery.js外掛程式,及樣本:https://github.com/e-smartdev/smartJQueryZoom

外掛程式描述:通過將滑鼠移至上方在圖片上,滾動滑鼠滾輪即可實現圖片的放大或者縮小效果。

smartZoom使用

舉個栗子,上代碼:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>joannau</title>    <style>        * {            padding: 0;            margin: 0;        }        .imgCon {            width: 800px;            height: 500px;            margin: 40px auto;            border: 2px solid #000;        }        .imgDiv {            width: 100%;            height: 100%;        }        .imgCon img{            width: 100%;        }    </style></head><body><div class="imgCon">    <div class="imgDiv">        <img src="./assets/zoomSmall.jpg" alt="">    </div></div><script src="../src/jquery-1.11.0.min.js"></script><script src="../src/e-smart-zoom-jquery.js"></script><script>    $(function () {        $(".imgCon img").smartZoom()    })</script></body></html>

直接對img對象使用smartZoom方法即可。

查看效果:

縮放

完美,這就成功使用了。

但很多人會遇見使用smartZoom圖片位置位移的問題,效果如下:

邊框不見,再看代碼會發現:

原來是top和left作祟。此時解決問題的重點就是在img映像外,嵌套一個div容器。如下:

<div class="imgDiv">        <img src="./assets/zoomSmall.jpg" alt="">   </div>

此時,便能解決位置位移問題。

其他API:

// 方法中可以通過設定top,left等參數來指定圖片初始參數;$(".imgCon img").smartZoom({            ‘left‘: ‘50px‘        })// 通過傳入‘destroy‘來取消縮放; $(".imgCon img").smartZoom(‘destroy‘)

 

jQuery圖片縮放外掛程式-smartZoom使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.