使用 JSON 将点击事件添加到 Galleria 链接

发布于 2024-11-03 16:20:26 字数 188 浏览 0 评论 0原文

我已经使用 JSON 建立了我的第一个 Galleria 画廊。

是否可以为我的四个图像的四个链接中的每一个的单击事件添加另一个函数?

有没有办法向 JSON 数据添加另一个变量或为每个单独的图像分配一个类?

我的 CMS 使用的分析必须通过单击功能调用,因此这对我的网站至关重要。

非常感谢, H

I have set up my first Galleria gallery using JSON.

Would it be possible to add another function to the on click event for each of the four links I have for my four images?

Is there a way to add another variable to the JSON data or assign a class to each individual image?

The analytics my CMS uses has to be called via an on click function so this is essential on my site.

Many thanks,
H

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

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

发布评论

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

评论(2

葬心 2024-11-10 16:20:26

可以再添加一个吗
函数到 on click 事件
我的四个链接中的每一个
四张图片?

是的,您可以将任意数量的处理程序绑定到同一事件。只要做(像往常一样):

$("selector").click(function(){
   //your code here
});

有没有办法添加另一个变量
到 JSON 数据或分配一个类
每个单独的图像?

我不知道 Galleria 的 json 结构如何,但如果您有选择器,您可以添加一个类(像往常一样):

$("image_selector").addClass("className");

抱歉,如果有些事情对您来说似乎很明显。
希望这有帮助。

Would it be possible to add another
function to the on click event for
each of the four links I have for my
four images?

Yes, you can bind any amount of handlers to the same event. Just do (as usual):

$("selector").click(function(){
   //your code here
});

Is there a way to add another variable
to the JSON data or assign a class to
each individual image?

I don't know how Galleria's json structure, but if you have the selector, you can add a class (as usual) as:

$("image_selector").addClass("className");

Sorry if some things seemed obvious to you.
Hope this helps.

唐婉 2024-11-10 16:20:26

,您可以向 Galleria 的 JSON 结构添加更多变量。我已成功为每个对象添加了一个名为“视频”的属性,以便在图片加载时流式传输 M-JPG。

Yes, you can add more variables to Galleria's JSON structure. I have successfully added a property called "video" for every object to stream M-JPG when the picture loads.

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