我正在爲我的網站做一個圖片查看器。顯示的圖像存在不透明問題。我想我的形象不透明度爲100%,我的黑色背景到80%,而不是:z-index/css/jQuery中的不透明度不起作用,因爲我想
我想我的直接圖像上設置不透明度,但它沒有工作。
我有這樣的jQuery的功能:
$("img").click(function(event){
// Create image frame
$("#imageView").css("width" , $(document).width());
$("#imageView").css("height" , $(document).height());
$("#imageView").css("display" , "block");
$("#imageView").css("opacity" , "0.8");
$("#imageView").css("background-color" , "black");
$("#imageView").css("position" , "absolute");
$("#imageView").css("left" , "0");
$("#imageView").css("top" , "0");
$("#imageView").css("z-index" , "9000");
$("#imageView").css("text-align" , "center");
// Load big picture
var miniSrc = $(this).attr("src").split("/");
var imgName = miniSrc[miniSrc.length - 1];
var bigSrc = "images/big/" + imgName;
var imgHtml = "<img id='bigImg' src='" + bigSrc + "' alt='' style=\"heigth:200px; width:300px\"/>";
// Insert Picture with animation
$("#imageView").html(imgHtml);
$("#bigImg").animate({
height: "400px",
width: "600px",
},500);
});
ImageView的是我的身體的空div。
什麼是我的CSS問題?
哦,我不知道黑色的背景只是一個面具。謝謝你,也就是這 – 2012-02-24 02:53:26