如何使用 jQuery Cycle Lite 代码阻止肖像图像被截断

发布于 2024-11-01 07:19:31 字数 813 浏览 1 评论 0原文

我正在使用以下 Wordpress 3.1.1 与 Nextgen Gallery 和 JQuery Cycle Lite 插件。 我已从 http://jquery.malsup.com/cycle 下载了最新版本的 Cycle Lite 插件/lite/

我遇到的问题是我正在使用的图库中有一些肖像图像,尽管我有合适的设置,但它们被砍掉而不是缩小。请参阅 http://www.rjt.org.uk/home/testlocation1

我正在使用WordPress 中的 [jj-ngg-jquery-cycle html_id="about-cycle-lite" gallery="7" width="400" height="600" fit="0" center="1"]。

我怀疑问题出在以下部分,但不知道如何解决它。

        $slides.each(function() {
        var $el = $(this);
        this.cycleH = (opts.fit && opts.height) ? opts.height : $el.height();
        this.cycleW = (opts.fit && opts.width) ? opts.width : $el.width();
    });

请提出建议。

I am using the following
Wordpress 3.1.1 with Nextgen Gallery and the JQuery Cycle Lite plugin.
I have downloaded the latest version of the Cycle Lite Plug in from http://jquery.malsup.com/cycle/lite/

The problem I have is the Gallery I am using has some portrait images in and although I have fit set they are being chopped off rather than shrunk. See http://www.rjt.org.uk/home/testlocation1

I am using [jj-ngg-jquery-cycle html_id="about-cycle-lite" gallery="7" width="400" height="600" fit="0" center="1"] in Wordpress.

I suspect the problem is with the following section, but am not sure how to fix it.

        $slides.each(function() {
        var $el = $(this);
        this.cycleH = (opts.fit && opts.height) ? opts.height : $el.height();
        this.cycleW = (opts.fit && opts.width) ? opts.width : $el.width();
    });

Suggestions please.

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

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

发布评论

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

评论(1

哑剧 2024-11-08 07:19:31

您的示例页面有一个例外: jQuery("div#about-cycle-lite").jjcycle is not a function

我创建了一个 工作 jsFiddle 但在您的示例中所有图像的尺寸相同,没有更高的图像。

Your example page has an exception: jQuery("div#about-cycle-lite").jjcycle is not a function

I've created a working jsFiddle but all the images are the same size in your example there are none taller.

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