画像を の中央に配置したいdiv
。私のコードは、
<html>
<head>
<title>test</title>
<style type="text/css">
.wrapper {
background:#EFEFEF;
margin: auto;
position: relative;
margin-bottom: 20px !important;
width: 800px;
padding-top: 5px;
}
.scrolls {
overflow-x: scroll;
overflow-y: hidden;
height: 400px;
}
.imageDiv {
margin: 0;
height: 400px;
}
.imageDiv img {
max-height: 400px;
cursor: pointer;
margin-left:20px;
}
</style>
<script type="text/javascript" src="jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var wh=$(window).height()/4;
$('.wrapper').css('margin-top',wh);
});
$(window).load(function(){
var tw = 0;
$.each($('.imageDiv img'), function() {
tw += $(this).width();
});
$('.imageDiv').width(tw);
$('.imageDiv img').click(function(){
var imgid=$(this).attr('id');
var width = $(imgid).width();
var margin = width/2;
$(imgid).css("margin-left","-"+margin);
});
});
</script>
</head>
<body>
<div class="wrapper">
<div class="scrolls">
<div class="imageDiv">
<img src="001_19_3.jpg" id="img1"/>
<img src="002_21_3.jpg" id="img2"/>
<img src="003_19_3.jpg" id="img3"/>
<img src="004_19_3.jpg" id="img4"/>
<img src="005_15_3.jpg" id="img5"/>
<img src="NB_1a_3.jpg" id="img6"/>
<img src="NB_2_3.jpg" id="img7"/>
<img src="NB_3_3.jpg" id="img8"/>
</div>
</div>
</div>
</body>
スライダーの画像をクリックすると、その画像が div の中央に移動するはずです。また、スクローラーは画像の位置に応じて移動したいと考えています。誰でも助けることができますか?お願いします!