0

我想将 vintage.js 与 shadowbox.js 一起使用!

<a rel="shadowbox" href="large.jpg"><img src="small.jpg" /></a>

和脚本

$(document).ready(function(){Shadowbox.init({ onFinish: function () { $('img').vintage({noise: 20}); } }); }); 

Shadowbox 工作正常,但不是复古适用于图像!

$ is not a function
[Break On This Error]   
onFinish: function () { $('img').vintage({noise: 20}); }

谢谢你的帮助...

4

1 回答 1

1

Shadowbox在使用它的任何播放器时都会创建每个链接元素的副本。

To use your vintageJS effects with the Shadowbox img Player , Shadowbox provides an ID named sb-player that you can use as the appropriate selector for any of it's players.

将$('img')更改为$('#sb-player')以允许您的 HTML5 FX 应用于打开的 Shadowbox 中的图像。

于 2012-05-13T13:56:03.047 回答