我有這個簡單的圖像放大jQuery。這是一個Demo example。它使用了elevateZoom jQuery。如何在需要時加載圖像
背後的代碼非常簡單:
<img id="zoom_05" src='small_image1.png' data-zoom-image="large_image1.jpg"/>
<script>
$vc("#zoom_05").elevateZoom({
zoomType : "inner",
cursor: "crosshair"
});
</script>
我的問題,是如何才能讓大圖片按需加載,只有當鼠標移動到它。請看看這個demo example,讓我知道我需要在代碼中添加什麼。
「演示示例」頁面加載無論是在年初的圖像,一個小['png'](http://elegantmembers.com/demo/images/small/image1.png )和一個大的['jpg'](http://elegantmembers.com/demo/images/large/image1.jpg),大約175 KB。 –
是的,我知道。我的問題是,如何防止加載大圖像,直到鼠標懸停在圖像上。我不希望它在乞討中加載 – RaduS
它看起來不像您所使用的插件支持。 http://www.elevateweb.co.uk/image-zoom/configuration –