是否可以建立一个链接,以便提出一个主题的 REL,
例如,如果链接是
<a href="picture.jpg" rel="lightbox">Click here</a>
是否可以有一个用户链接,这样当他们转到该页面时,它会自动打开灯箱?
例如http://example.com/?rel=lightbox&src=picture.jpg
或类似的东西?
是否可以建立一个链接,以便提出一个主题的 REL,
例如,如果链接是
<a href="picture.jpg" rel="lightbox">Click here</a>
是否可以有一个用户链接,这样当他们转到该页面时,它会自动打开灯箱?
例如http://example.com/?rel=lightbox&src=picture.jpg
或类似的东西?
是的,但没有浏览器包含灯箱,因此您还需要编写或查找代码来制作其中之一。
对的,这是可能的。您最好使用类似的 URL http://domain.com/#lightbox
,并编写一个小脚本:
//jQuery sample
$(document).ready(function() {
if (location.hash == "#lightbox") {
//Just show your lightbox manually
}
});
你可以用一点 jQuery 做到这一点
$(a[rel=lightbox]).click(function(e) {
// open the lightbox with the link url inside
return false
});