クリック後に画像のサイズを変更するためにjQueryを使用しています。クリック後の画像のサイズに関係なく、閉じるボタンを右上隅に保持するにはどうすればよいですか。 JSFIDDLE
私のCSS
#full_image {
width: 0px;
height: 0px;
left: 0px;
position: relative;
opacity: 1;
z-index: 9;
}
#full_image img {
background: url("zoom-on.png") no-repeat;
background-position: 5px 5px;
left: 0px;
width: 339px;
height: 211px;
position: relative;
overflow: hidden;
}
#full_image .full_close{
background: url("zoom-on.png") no-repeat;
top: 10px;
cursor: pointer;
height: 29px;
opacity: 1;
position: absolute;
width: 29px;
z-index: 999;
right: 0px;
}
私のhtml
<div id="full_image"><img src=""/>
<span> <a href="#" class="full_close"></a></span>
</div>
問題は、画像を #full_image 内に保持することはできますが、 #full_image img 内に含める必要があることです。