将图像动态加载到 jquery iviewer 中

发布于 2024-11-09 11:49:34 字数 970 浏览 3 评论 0原文

有人曾经将图像动态加载到 jquery iViewer 中吗?目前,它的设置是这样

  $(document).ready(function(){
              $("#images").iviewer(
                   {
                   src: "images/voices/big/page01.jpg", 
                   update_on_resize: false,
                   initCallback: function (object)
                   {
                       $("#in").click(function(){ object.zoom(1);}); 
                       $("#out").click(function(){ object.zoom(-1);}); 
                       $("#fit").click(function(){ object.fit();}); 
                       $("#orig").click(function(){ object.toOrig();}); 
                       $("#update").click(function(){ object.update();}); 
                   }
              });
        });

的,您必须在页面上放置不同的实例才能显示多个图像。目前我有缩略图的“可滚动”插件,我希望能够动态地将大图像加载到 iViewer 插件中。有人有什么想法吗?

当前示例:http://orangepxl.com/yasuko/voices.php 只有 1 张图像工作... :(

Anyone ever loaded images dynamically into jquery iViewer? Currently, it's setup as

  $(document).ready(function(){
              $("#images").iviewer(
                   {
                   src: "images/voices/big/page01.jpg", 
                   update_on_resize: false,
                   initCallback: function (object)
                   {
                       $("#in").click(function(){ object.zoom(1);}); 
                       $("#out").click(function(){ object.zoom(-1);}); 
                       $("#fit").click(function(){ object.fit();}); 
                       $("#orig").click(function(){ object.toOrig();}); 
                       $("#update").click(function(){ object.update();}); 
                   }
              });
        });

so you have to put different instances on the page in order to show more than one image. Currently i have the "scrollable" plugin for thumbnails and i wanted to be able to dynamically load their large images into iViewer plugin. Anyone got any ideas?

Current example here: http://orangepxl.com/yasuko/voices.php only 1 image will work... :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

记忆之渊 2024-11-16 11:49:34

请从 github 获取该插件的最新版本。 Iviewer 现在是一个 jQuery UI 小部件,它具有 loadImage 方法,因此您可以在单个小部件中显示不同的图像。

您可以使用如下代码加载新图像:

jQuery('.iviewer_selector').iviewer('loadImage', 'http://url.to/image.png');

请参阅 https://github.com/can3p/iviewer例子。

Please, take the last version of the plugin from the github. Iviewer is now a jQuery UI widget and it has loadImage method, so you can show different images in a single widget.

You could load new image with code like this:

jQuery('.iviewer_selector').iviewer('loadImage', 'http://url.to/image.png');

See https://github.com/can3p/iviewer for examples.

笑脸一如从前 2024-11-16 11:49:34

您可以加载所有这些,并且可以使用 jquery 隐藏它们,并根据缩略图的单击事件显示它们。

对所有图像执行 iViewer 并使用 jquery 或仅使用 css 隐藏它们,
单击缩略图时,仅显示相应的图像,并隐藏其余图像

You can load All of them and, can hide them using jquery, and show them according to the click event for Thumbnails.

Do the iViewer for all of the images and hide them using jquery or just css,
and when clicking on the thumbnails, show only the corresponding image, and hide rest

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文