jQueryを使用してIEで単純なズームを作成する際に問題が発生しているようです。Firefoxではすべてが順調ですが、IEはほとんどのユーザーから途切れ途切れであると報告されています。
IEのコードを(jQuery.browser.msieを使用して)無効にしましたが、可能であれば誰かの助けを借りたいと思います。
私のjqueryソースコードは以下のとおりです(upport関数は無視してください)。
this.imagePreview = function(){
/* CONFIG */
xOffset = 10;
yOffset = 20;
// these 2 variable determine popup's distance from the cursor
// you might want to adjust to get the right result
/* END CONFIG */
$("a.preview").hover(function(e){
this.t = this.title;
this.title = "";
this.inside = $(this).attr('inside')
this.outside = $(this).attr('outside')
var c = (this.t != "") ? "<br/>" + this.t : "";
$("body").append("<p id='preview'><img width='260' src='"+ this.inside +"' />"+ c +"</p>");
$("#preview")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn("fast");
},
function(){
this.title = this.t;
$("#preview").remove();
});
$("a.preview").mousemove(function(e){
$("#preview")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px");
});
};
$(window).load(function(){imagePreview();});
問題のWebページの1つの例を次に示します:http ://www.engreet.com/CategoryDetail.aspx?cid=17 。ソースにスクロールすると、次のようなコードを使用して、サムネイルに内部のロールオーバー/ホバープレビューがあることがわかります。
<a href="/CardDetailFull.aspx?cid=670" outside="http://static.engreet.com/ArtistFiles/51/Happy_Bela_Front_633998103802577482.jpg" inside="http://static.engreet.com/ArtistFiles/51/Happy_Bela_InsideRight_633998103832264982.jpg" title="Inside Preview" class="preview">
<img src='http://static.engreet.com/ArtistFiles/51/_128X178_Happy_Bela_Front_633998103802577482.jpg' alt="" width="128" />
</a>
どんな助けでも大歓迎です。いくつかの無料カードのコードを誰かに送ってください!
ありがとう、アダム