我是新來的jquery。 當我的圖像大於div尺寸時,我想要拖動圖像。 舉例:當我們上傳封面圖片,如果我的圖片尺寸較大,然後覆蓋圖片div,那麼他們會要求我們設置圖片的哪一部分,我們要顯示。 我想這種類型的功能 我的代碼是:當圖像大小是biger然後最小條件時拖動圖像
<div class="main">
<img class="absolute" src="http://jotform.org/demo/jquery-image-area-select-plugin/images/sweet-dogs.jpg" alt="" />
</div>
CSS:
.main{
width:300px;
margin: 0 auto;
overflow:hidden;
position: relative;
height: 100px;
}
img.absolute{
left: 50%;
margin-left: -200px;
top: 50%;
margin-top: -200px;
position:absolute;
}
希望你明白我的問題
你能提供小提琴嗎? –
http://jsfiddle.net/jaap/wjw83/5/ – sonalgoyal
它不是我的小提琴。如果圖像尺寸較大,請將此小提示溢出 – sonalgoyal