如何使用 jQuery Cycle Lite 代码阻止肖像图像被截断
我正在使用以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的示例页面有一个例外:
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.