我在 mypage.aspx 中有一个标签:
<asp:Image ID="imgDedoPid" runat="server" Height="100%" data-big=""
ImageAlign="AbsBottom" />
在 mypage.aspx.cs 我有这个电话:
Image imgDedoPid.ImageUrl = "Handler1.ashx?file=" + pathImgLoad
imgDedoPid.Attributes["data-big"] = imgDedoPid.ImageUrl;
imgDedoPid.Attributes.Add("onload", "lupa();");
js页面是这样的:
<script type="text/javascript">
function lupa() {
$("#imgDedoPid").mlens(
{
imgSrc: $("#imgDedoPid").attr("data-big"), // path of the hi-res version of the image
lensShape: "circle", // shape of the lens (circle or square)
lensSize: 180, // size of the lens (in px)
borderSize: 4, // size of the lens border (in px)
borderColor: "#fff", // color of the lens border (#hex)
borderRadius: 0 // border radius (optional, only if the shape is square)
});
</script>
此代码在 google chrome 中完美运行,但在 IE9 中不起作用(图像已加载自动缩放,但我想要这种效果: http: //mlens.musings.it/)
谁能帮我?
谢谢!