jQuery Gallerrific | jQuery处理用于定位的自定义参数

发布于 2024-09-24 00:20:18 字数 478 浏览 5 评论 0 原文

为所有了解画廊的人简要介绍如下: 我在指向图像的标签列表上的 rel 属性内有一个数值。 我已经设法获取这个数字并将其与 galleriffic 用于存储图像信息的 imageData 对象关联起来。 我不能做的是使用 .css() 将此值应用到标签中。 我想单独更改每个图像的填充,以便我可以拥有以下内容 输出: 或者 改变填充 两者都有相同的结果,

我无法在 javascript 代码中找到何处来调用以下命令来执行此操作:

$("#slideshow").css("top",imageData.padd+"px");

以下是我的示例的链接:http://www.44db.com/demo/snf-grands/

The brief is the following for all those who know galleriffic:
I have a numeric value inside a rel attribute on the list of a tags that point to the images.
I have managed to get this number and assocciate it with the imageData object that galleriffic uses to store the image info.
What I cannot do is apply this value using .css() for example into the tag.
I want to change the padding for each image individually so that I can have the following
output:

OR
change the padding of the
both have the same result

I cannot find where in the javascript code to call the following command to do this:

$("#slideshow").css("top",imageData.padd+"px");

Here is a link to my example: http://www.44db.com/demo/snf-grands/

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

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

发布评论

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

评论(1

So要识趣 2024-10-01 00:20:18

快速查看示例页面和 Galleriffic 后,您似乎只需将选项 onSlideChange 添加到 Galleriffic 初始化并在那里添加您的函数即可。

onSlideChange: function() { $("#slideshow").css("top",imageData.padd+"px"); }

也许您必须从​​该函数中的 rel-tag 中提取填充,但由于您似乎比我更了解 Galleriffic,因此这对您来说应该不成问题。

after a quick look at your example-page and Galleriffic it seems like you could just add the option onSlideChange to your Galleriffic-initialization and add your function there.

onSlideChange: function() { $("#slideshow").css("top",imageData.padd+"px"); }

Maybe you will have to extract the padding out of the rel-tag within this function, but since you seem to know Galleriffic better than me, this should be no problem for you.

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