【网页特效代码-浏览特效】打开页面后出现一个
时间:2026-01-18
时间:2026-01-18
【网页特效代码-浏览特效】打开页面后出现一个飘动的窗口,效果很酷
<script>
var URL= "photo/flyingwindow_show.html"; // Set size of popup
var W= 130; // not less than 100 var H= 180; // not less than 100 // Set margin from edge of screen var M= 100;
// Set speed
var speed = 20;
// Set increment of motion
var increment = 16;
// Do not edit below this line //============================ var nowY=M;var nowX=M;
var theWidth=window.screen.width; var theHeight=window.screen.height; var limitX=theWidth-W-M;
var limitY=theHeight-H-M;
var s="width="+W+",height="+H; function doFlyMe(){
P=window.open(URL,"A",s);
P.resizeTo(W,H);
P.moveTo(M,M);
P.focus();
D();}
function D(){
if (nowY<=limitY){
P.moveTo(nowX,nowY);
P.focus();
nowY+=increment;
T=setTimeout("D()",speed);
}else{
clearTimeout(T);
nowY=limitY;
P.moveTo(nowX,nowY);
P.focus();
R();}}
function R(){
if (nowX<=limitX){
P.moveTo(nowX,nowY);
P.focus();
nowX+=increment;
T=setTimeout("R()",speed);
}else{