0
我想使用iviewer和圖片ID。有沒有可能的方法?帶ID的JQuery圖像瀏覽器?
<script type="text/javascript">
var $ = jQuery;
$(document).ready(function(){
var iv1 = $("#viewer").iviewer({
src: "test_image.jpg", ------> here I would like to put image id. "#image_1"
update_on_resize: false,
zoom_animation: false,
mousewheel: true,
onMouseMove: function(ev, coords) { },
onStartDrag: function(ev, coords) { return false; }, //this image will not be dragged
onDrag: function(ev, coords) { }
});
});
</script>
<div id="viewer" class="viewer">
<img src="test_image.jpg" id="image_1"/>
</div>
@Satpal,我試試吧,這是行不通的。謝謝 – CycDemo
你可以設置一個小提琴或蹦牀嗎? – Satpal
@Satpal對不起。沒關係。它只是在div上覆製圖像。但是,我使用CSS樣式'display:none;'來修復它# – CycDemo