JavaScript 画像拡大効果 function_image 特殊効果

WBOY
リリース: 2016-05-16 18:41:33
オリジナル
1081 人が閲覧しました

[Ctrl A すべて選択 注:
外部 Js を導入する必要がある場合は、更新して実行する必要があります
]
imageZoom .js コードをコピー
コードは次のとおりです:

/*
*著者:sohighthesky
*日付:2009-11-14
*/
/*
*img は拡大する画像またはその ID を指定します
*options: コード内の setOptions のコメントを参照してください。
*/
var imageZoom = function(img,options) {
this.img=this.g(img); (this .img.nodeName!="IMG") {
If(this.img && this.img.children[0].nodeName=="IMG")this.img=this.img.children[0] ;
else throw Error("無効な引数 [img] !");
}
this.setOptions(options);
this.init();
imageZoom。プロトタイプ= {
g:function(id) {return typeof(id)=="string"?document.getElementById(id):id;},
ae:function(el,type,call) {
if(el.addEventListener)el.addEventListener(type,call,false);
else el.attachEvent("on" type,call); // 要素の座標を取得します
var x = 0, y = 0;
do{x = o.offsetLeft; y = o.offsetTop;}
while(o=o.offsetParent); return { 'x':x,'y':y};
},
setOptions:function(options) {
this.options={
mul:0,//デフォルトは拡大しない (画像の元のサイズを表示します)
bigImg:null, //拡大画像のパスを指定します (小さい画像に比例する必要があります)
viewer:null, //表示位置を指定します ( div または他の ID にすることができます)
viewerCla: "", // プレビューされる div のクラス スタイル
viewerMul:1, // 表示される div の倍率を指定します。デフォルトは元のサイズです。このパラメーターはビューアを設定する場合は無効です
onShow: function(){},
onHide:function(){}
};
for(var o in options) {this.options[o]= options[o];}
this. options.bigImg =this.options.bigImg ||this.img.src;
},
getSize:function(o) {
return {w: o.offsetWidth,h:o.offsetHeight};
},
createView:function() {
var _is=this.getSize(this.img); > if(this.options.viewer){
this.viewer=this.g(this.options.viewer);
this.viewer.style.overflow="hidden";
this.viewer. style.position="relative";
} else {
this.viewer=d.createElement("div");
this.viewer.className=this.options.viewerCla;
=this.getPos(this.img);
This.viewer.style.cssText="display:none;overflow:hidden;position:absolute;top:" pos.y "px;left:" (pos.x) _is.w 10) "px;高さ:" _is.h*this.options.viewerMul "px;幅:" _is.w*this.options.viewerMul "px" .viewimg=d.createElement("img"); ;
this.viewimg.style.cssText="position:relative;left:-33%;top:-33%;";
this.viewimg.src =this.options.bigImg; (this.options.mul) {//倍率を設定します
this.viewimg.style.width=_is.w*this.options.mul "px"
This.viewimg.style.height=_is .h*this.options.mul "px"
}
this.viewer.appendChild(this.viewimg);
},
move:function(e) {
if(!this.options.mul)
this.options.mul=this.viewimg.offsetHeight/this.img.offsetHeight;
var pos=this.getPos(this.img);
var l=e.clientX-pos.x (document.documentElement.scrollLeft || document.body.scrollLeft);// ネズミ标の位置は写真の左上角に対するオフセット
var t=e.clientY- pos.y (document.documentElement.scrollTop || document.body.scrollTop);
var zs=this.getSize(this.viewer);
var pl=-l*this.options.mul zs.w/2;
var pt=-t*this.options.mul zs.h/2;
pl=pl>0?0:pl;
pt=pt>0?0:pt;

var vs=this.getSize(this.viewimg);
pl=Math.max(pl,zs.w-vs.w);
pt=Math.max(pt,zs.h-vs.h);

this.viewimg.style.left=pl "px";
this.viewimg.style.top=pt "px";
},
init:function() {
var o=this;
varload=function(a) {///图片追加
o.createView.call(o);
o.img.setAttribute("alt","");
o.ae(o.img,"mousemove",function(event){o.move.call(o,event);});
if(!o.options.viewer) {
o.ae(o.img,"mouseover",function(){o.options.onShow();o.viewer.style.display="" });
o.ae(o.img,"mouseout",function(){o.options.onHide();o.viewer.style.display="none"});
}
};
if(typeof(document.readyState)=="未定義" || window.opera) {
var de=document.documentElement ||ドキュメント.ボディ;
var h=de.scrollHeight;
var t=setInterval(function() {
if(h==de.scrollHeight){
clearInterval(t); load();
} else h=de.scrollHeight ;
},500);
} else if(document.readyState=="complete")
load();
else
o.ae(window,"load",load);
}
};

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート