jQuery Javascript 图像放大器
我正在寻找一个悬停时的 jquery 或 javascript 图像放大器,不需要两个图像(大和小)即可工作。 我已经搜索了几个小时,但没有找到任何按照他们所说的方式工作的东西。
- iZoom、
- jQZoom、
- tjpZoom、
- 图像放大、
- ImageZoom、
- ImageLens、
- Loupe
都已尝试过,但由于某种原因无法在我当前的配置下工作。
所以此时我正在寻找非谷歌搜索的结果,因为我已经浏览了“jquery Image Magnifier”的 25 页结果,但没有任何效果。
I'm looking for a jquery or javascript image magnifier on hover that does not require two images ( large and small ) to work.
I've searched for hours and haven't found any that work the way they are said to.
- iZoom,
- jQZoom,
- tjpZoom,
- Image Magnify,
- ImageZoom,
- ImageLens,
- Loupe
have all been tried and don't work for one reason or another with my current config.
So at this point I'm looking for non-googled results since I've gone through 25 pages of results from 'jquery Image Magnifier' and nothing has worked.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在隐藏画布中渲染图像的副本,抓取鼠标位置周围的矩形,然后在第二个可见画布中渲染该部分的放大图。它是用很少的代码行编写的 - 即使是用普通的 Javascript:
示例:
http://kirox.de/test/magnify.html
有一个改进版本的链接,其中包含具有灯光效果和桶形畸变的可调节圆形镜头。也适用于画布。
限制:
You could render a duplicate of the image in a hidden canvas, grab a rectangle around the mouse position and render a magnification of this part in a second visible canvas. It is written in very few lines of code - even in plain Javascript:
Example:
http://kirox.de/test/magnify.html
There's a link to an improved version featuring an adjustable round lens with light effects and barrel distortion. Also works with canvases.
Restrictions: