看到這個http://www.jsfiddle.net/hKQcX/4/
$(function(){
$('.movie').live('mouseover', function(){
var $movie = $('.movie');
$movie.css('z-index', 0);
$movie.css('opacity', .50);
$movie.css('width', '100px');
$movie.css('height', '150px');
$movie.css('margin-top', '0');
var $this = $(this);
$this.css('z-index', 100);
$this.css('opacity', 1.00);
$this.css('width', '120px');
$this.css('height', '180px');
$this.css('margin-top', '-15px');
});
var i=0;
for (i;i<10;i++){
if(i%2==0)
$('#container').append('<div class=\"movie red \"></div>');
else
$('#container').append('<div class=\"movie green\"></div>')
}
});
在你的CSS
#container{
margin-left: 50px;
margin-top: 100px;
}
.movie{
position: relative;
float:left;
width:100px;
height: 150px;
margin-left:-50px;
}
.red{
background-color:red;
opacity: .5;
}
.green{
background-color:green;
opacity: .5;
}
thks爲快速anwser我得到了基本的佈局如何將中心對齊這些圖像...請詳細寫.thks – Praneeth 2011-01-10 06:44:49
回合http://www.jsfiddle.net/hKQcX/ – 2011-01-10 06:51:40
@ Eric ..請閱讀我上面的評論..你做了什麼非常讚賞。我想中心對齊圖像和圖像右側部分應顯示。 – Praneeth 2011-01-10 06:57:38