jQuery Overlay Apple 通过使用 ?
如何使用文本链接 < A>
运行叠加层而不是使用 IMG?
regarding jQuery Tools Apple Overlay demo
How do I use text link <A>
to run the overlay instead of using IMG?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需要更改 jquery 选择器即可识别您的链接(或任何类型的对象)。
更改:
到:
或
其中 'apple_link' 是链接的 id,同时在链接上添加 rel 属性,如下所示:
注意:rel 的值是将在叠加层中打开的 div
You just need to change the jquery selector to identify your link (or any type of object for that matter).
Change:
To:
or
Where 'apple_link' is the id of the link, also add a rel attribute onto the link like so:
Note: The value of the rel is the div that will be opened in the overlay
您的意思是像此演示中那样吗?
Do you mean like in this demo?