所以我在身体上附加一个div,实际上点击图片a
标签时会弹出这个div。为了实现身体叠加效果,我使用的是fancybox。但是我可以将div附加到body,但是这个div不会作为fancybox加载。有人可以在这里帮忙:
我的代码在这里:
http://jsfiddle.net/refhat/xap9F/60/
此外,我在fancybox中遗漏了一些内容,我也没有看到Chrome中fancybox右上角的近距离十字架,点击fancybox上的任何地方只关闭了fancybox,情况应该不是这样。
答案 0 :(得分:1)
以下是一些可用于创建叠加层的代码:
overlay = function () {
var o, c;
this.create = function (html) {
o = $('<div />');
c = $('<div />');
h = $('<div>' + html + '</div>').appendTo(c);
var o_css = {
'position': 'absolute',
'top': '0',
'left': '0',
'width': '100%',
'height': '100%',
'background': '#000', // Background of the overlay (opacity is set later)
'z-index': '10000',
'overflow': 'hidden'
};
var c_css = {
'position': 'absolute',
'top': '50%',
'left': '50%',
'width': '300px', // Width of content box
'height': '200px', // Height of the content box
'margin-left': '-150px', // Half of content width (used to center the box)
'margin-top': '-100px', // Half of content height (used to center the box)
'background': '#fff', // Background of the content
'color': '#000', // Text color
'z-index': '10001'
};
var h_css = { 'padding': '10px' }; // If you want paddning
o.css(o_css);
c.css(c_css);
h.css(h_css);
o.fadeTo(0, 0).appendTo('body').fadeTo(500, 0.5); //0.5 is opacity, change from 0.1-1.0
c.fadeTo(0, 0).appendTo('body').fadeTo(500, 1.0); //1.0 is opacity, change from 0.1-1.0
}
this.remove = function () {
o.remove();
c.remove();
}
}
你这样称呼它:
$(document).ready(function () {
o = new overlay();
o.create('HTML you want to fill the container with, example and image or/and text or maybe a link you later bind o.remove() to'); //This creates the overlay
o.remove(); // .. and this removes the overlay
});