標籤: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使用