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/ )
誰でも私を助けることができますか?
ありがとうございました!