网页的功能是,底下一排小小图,hot1.jpg,hot2.jpg...,当鼠标移动到hot1.jpg,在loadarea区显示hot1.jpg大图,如果鼠标移动到hot2.jpg,在loadarea区显示hot2.jpg大图如果把鼠标移动到hot1.jpg大图(强制显示为60*60),就显示鼠标当前位置的大图(2048*1536)细节如同新蛋网站的产品图片
http://www.newegg.com.cn/Product/A36-025-A15.htm?neg_sp=countdown-_-A36-025-A15-_-product
在.asp文件中的jQuery部分代码:
Query(document).ready(function ($) {
        $('#bigImage').addimagezoom({
            zoomrange: [10, 10],
            magnifiersize: [600, 600],
            magnifierpos: 'right',
            cursorshade: true,
            largeimage: ??????
        })
    })
.asp部分代码
<td width="300" height="300" id="loadarea"><img id="bigImage" src=girls.jpg></td>
...
<td><a rev=targetdiv:loadarea rel=enlargeimage class=thumbnail href=/pictures/hot1.jpg><img border=0 src=/pictures/hot1.jpg  width=60 height=60></a></td>
<td><a rev=targetdiv:loadarea rel=enlargeimage class=thumbnail href=/pictures/hot2.jpg><img border=0 src=/pictures/hot2.jpg  width=60 height=60></a></td>
...