<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    我的Blog我做主^_^

    走向一條通往JAVA的不歸路...

      BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
      64 隨筆 :: 68 文章 :: 77 評論 :: 0 Trackbacks

    <HTML>
    <HEAD>
    <META http-equiv='Content-Type' content='text/html; charset=gb2312'>
    <TITLE>顯示在頁面上的可鼠標移動的層,很酷的效果</TITLE>
    </HEAD>
    <BODY >
    <STYLE type=text/css>
    #floater {
    ?LEFT: 400px; POSITION: absolute; TOP: 120px; VISIBILITY: visible; WIDTH: 160px; Z-INDEX: 10
    }
    </STYLE>
    <DIV align=center id=floater style="HEIGHT: 98px; WIDTH: 240px;">
    <TABLE bgColor=#deefef border=1 borderColor=#008000 borderColorDark=#00ff00
    borderColorLight=#ff00ff cellPadding=2 cellSpacing=1 width="240">
    ? <TBODY>
    ? <TR>
    ??? <TD width="100%">
    ????? <P align=center>歡迎大家光臨網絡一點紅<BR>網頁特效專欄!</P></TD></TR>
    ? <TR>
    ??? <TD width="100%">?? 歡迎光臨網絡一點紅網頁特效專欄,有什么意見和建議請盡管提出來,你的意見就是對我們的促進,我們會盡量為你們服務的.請多多支持我們的工作,成長中的每一步都會有你的足跡!!!<BR>???
    ????? 你若有什么好的建議和意見,可以給我<A
    ????? href="mailto:lornkiss@gmail.com"><FONT color=#ff0000
    ????? size=2>來信</FONT></A>,你若有好的例子,小編更希望能向你請教和學習。</TD></TR></TBODY></TABLE></DIV>
    <SCRIPT language=JavaScript>?????????????????????????????
    self.onError=null;?????????????????????????????
    currentX = currentY = 0;??????????????????????????????
    whichIt = null;????????????????????????????????????????
    lastScrollX = 0; lastScrollY = 0;?????????????????????????????
    NS = (document.layers) ? 1 : 0;????????????????????????????
    IE = (document.all) ? 1: 0;?????????????????????????????
    <!-- STALKER CODE -->?????????????????????????????
    function heartBeat() {?????????????????????????????
    if(IE) { diffY = document.body.scrollTop; diffX = document.body.scrollLeft; }???????????????????????????? if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; }??????????
    if(diffY != lastScrollY) {???????????
    percent = .1 * (diffY - lastScrollY);???
    if(percent > 0) percent = Math.ceil(percent);
    else percent = Math.floor(percent);?
    if(IE) document.all.floater.style.pixelTop += percent;?
    if(NS) document.floater.top += percent;????????????????
    lastScrollY = lastScrollY + percent;?????
    }??????????????????????
    if(diffX != lastScrollX) {??????
    percent = .1 * (diffX - lastScrollX);????
    if(percent > 0) percent = Math.ceil(percent);??????
    else percent = Math.floor(percent);??????????????????
    if(IE) document.all.floater.style.pixelLeft += percent;???????
    if(NS) document.floater.left += percent;??????
    lastScrollX = lastScrollX + percent;????????????????????
    }??????????????????????????
    }????????????????????????
    <!-- /STALKER CODE -->?????????????
    <!-- DRAG DROP CODE -->?????????????
    function checkFocus(x,y) {????????
    stalkerx = document.floater.pageX;????
    stalkery = document.floater.pageY;???????????????????????
    stalkerwidth = document.floater.clip.width;?????????????
    stalkerheight = document.floater.clip.height;????????????????????????
    if( (x > stalkerx && x < (stalkerx+stalkerwidth)) && (y > stalkery && y < (stalkery+stalkerheight))) return true;?????????????????????
    else return false;???????
    }????????????????????
    function grabIt(e) {???????????
    if(IE) {???????????????????????????
    whichIt = event.srcElement;
    while (whichIt.id.indexOf("floater") == -1) {???
    whichIt = whichIt.parentElement;??????????????????????????
    if (whichIt == null) { return true; }????????
    ?}???????????????????????????
    whichIt.style.pixelLeft = whichIt.offsetLeft;?????????????????????????????
    whichIt.style.pixelTop = whichIt.offsetTop;?????????????????????????
    currentX = (event.clientX + document.body.scrollLeft);??????????????????????
    currentY = (event.clientY + document.body.scrollTop);???????????????????????
    } else {????????????????????????????
    window.captureEvents(Event.MOUSEMOVE);???
    if(checkFocus (e.pageX,e.pageY)) {???????????????????????????
    whichIt = document.floater;?????????????????????????????
    stalkerTouchedX = e.pageX-document.floater.pageX;?????
    StalkerTouchedY = e.pageY-document.floater.pageY;?????????
    }?????????????????????????????
    }???????????????????????????
    return true;???????????????????????
    }???????????????????????????
    function moveIt(e) {??????????????
    if (whichIt == null) { return false; }??????
    if(IE) {????????????????????????????
    newX = (event.clientX + document.body.scrollLeft);??????????????????????????
    newY = (event.clientY + document.body.scrollTop);???????????????
    distanceX = (newX - currentX);??? distanceY = (newY - currentY);??
    currentX = newX;??? currentY = newY;??????????????????????
    whichIt.style.pixelLeft += distanceX;?????????????????????????
    whichIt.style.pixelTop += distanceY;?????????????????????
    if(whichIt.style.pixelTop < document.body.scrollTop) whichIt.style.pixelTop = document.body.scrollTop;??? if(whichIt.style.pixelLeft < document.body.scrollLeft) whichIt.style.pixelLeft = document.body.scrollLeft; if(whichIt.style.pixelLeft > document.body.offsetWidth - document.body.scrollLeft - whichIt.style.pixelWidth - 20) whichIt.style.pixelLeft = document.body.offsetWidth - whichIt.style.pixelWidth - 20;
    if(whichIt.style.pixelTop > document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5) whichIt.style.pixelTop = document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5;?
    event.returnValue = false;?
    } else {??
    whichIt.moveTo(e.pageX-StalkerTouchedX,e.pageY-StalkerTouchedY);
    if(whichIt.left < 0+self.pageXOffset) whichIt.left = 0+self.pageXOffset;
    if(whichIt.top < 0+self.pageYOffset) whichIt.top = 0+self.pageYOffset;?
    if( (whichIt.left + whichIt.clip.width) >= (window.innerWidth+self.pageXOffset-17)) whichIt.left = ((window.innerWidth+self.pageXOffset)-whichIt.clip.width)-17;
    if( (whichIt.top + whichIt.clip.height) >= (window.innerHeight+self.pageYOffset-17)) whichIt.top = ((window.innerHeight+self.pageYOffset)-whichIt.clip.height)-17;
    return false;}
    return false;?
    }??
    function dropIt() {????
    whichIt = null;????
    if(NS) window.releaseEvents (Event.MOUSEMOVE);?
    return true;????????????
    ?}????????????????????
    <!-- DRAG DROP CODE -->?
    if(NS) {???
    window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);
    window.onmousedown = grabIt;
    window.onmousemove = moveIt;
    window.onmouseup = dropIt;
    }?????????????
    if(IE) {????????????????????
    document.onmousedown = grabIt;???
    document.onmousemove = moveIt;??
    document.onmouseup = dropIt;?????????
    ?}????????????????????????
    if(NS || IE) action = window.setInterval("heartBeat()",1);??
    </SCRIPT>

    </BODY></HTML>



    posted on 2007-01-31 17:32 java_蟈蟈 閱讀(551) 評論(1)  編輯  收藏 所屬分類: JAVASCRIPT

    評論

    # Seo-Kopiraiting 2009-05-18 21:19 Seo-Kopiraiting
    Good Day. The more freedom we enjoy, the greater the responsibility we bear, toward others as well as ourselves.
    I am from Marino and learning to write in English, give true I wrote the following sentence: "Professional seo expert advice from a qualified seo consultant.Apr guest post by harsh one of the biggest advantages of wordpress over blogspot is the power to add functions and modify the settings for."

    Thanks for the help :(, Shino.  回復  更多評論
      

    主站蜘蛛池模板: 国产AⅤ无码专区亚洲AV| 亚欧免费一级毛片| 四虎免费久久影院| 男人的天堂av亚洲一区2区| 成人五级毛片免费播放| 亚洲综合一区无码精品| 成人毛片手机版免费看| 亚洲av乱码一区二区三区按摩 | 亚洲av无码专区国产不乱码 | 亚洲噜噜噜噜噜影院在线播放 | 2021在线观看视频精品免费| 亚洲AV天天做在线观看| 99re在线精品视频免费| 亚洲福利一区二区精品秒拍| 在线观看免费高清视频| 亚洲国产精品网站在线播放| 亚洲图片中文字幕| 色妞WWW精品免费视频| 国产亚洲一区二区手机在线观看| 亚洲免费观看视频| 国产亚洲人成无码网在线观看| 久久免费观看国产精品| 亚洲人成电影在线观看青青| 女人毛片a级大学毛片免费| 国产成人高清亚洲一区91| 亚洲人成色77777| 四虎精品视频在线永久免费观看 | 亚洲中文字幕一二三四区苍井空| 天天干在线免费视频| 72pao国产成视频永久免费| 亚洲国产精久久久久久久| 三级片免费观看久久| 久久久久亚洲AV片无码下载蜜桃| 100000免费啪啪18免进| 亚洲va无码专区国产乱码| 亚洲成人免费网址| 国产亚洲综合久久| 亚洲精品福利视频| 国产小视频免费观看| 亚洲依依成人亚洲社区| 国产性爱在线观看亚洲黄色一级片|