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

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

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

    我的Blog我做主^_^

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

      BlogJava :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
      64 隨筆 :: 68 文章 :: 77 評(píng)論 :: 0 Trackbacks

    <HTML>
    <HEAD>
    <META http-equiv='Content-Type' content='text/html; charset=gb2312'>
    <TITLE>顯示在頁面上的可鼠標(biāo)移動(dòng)的層,很酷的效果</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>歡迎大家光臨網(wǎng)絡(luò)一點(diǎn)紅<BR>網(wǎng)頁特效專欄!</P></TD></TR>
    ? <TR>
    ??? <TD width="100%">?? 歡迎光臨網(wǎng)絡(luò)一點(diǎn)紅網(wǎng)頁特效專欄,有什么意見和建議請(qǐng)盡管提出來,你的意見就是對(duì)我們的促進(jìn),我們會(huì)盡量為你們服務(wù)的.請(qǐng)多多支持我們的工作,成長中的每一步都會(huì)有你的足跡!!!<BR>???
    ????? 你若有什么好的建議和意見,可以給我<A
    ????? href="mailto:lornkiss@gmail.com"><FONT color=#ff0000
    ????? size=2>來信</FONT></A>,你若有好的例子,小編更希望能向你請(qǐng)教和學(xué)習(xí)。</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) 評(píng)論(1)  編輯  收藏 所屬分類: JAVASCRIPT

    評(píng)論

    # 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.  回復(fù)  更多評(píng)論
      

    主站蜘蛛池模板: 亚洲熟妇AV一区二区三区宅男| 成年性生交大片免费看| 中文字幕影片免费在线观看 | 久久精品免费视频观看| 亚洲精品无码不卡在线播放HE| 色天使色婷婷在线影院亚洲 | 九月婷婷亚洲综合在线| 国产成人精品日本亚洲语音| 日韩一级视频免费观看| 色偷偷亚洲男人天堂| 全亚洲最新黄色特级网站| 特级毛片免费播放| 久久影院亚洲一区| 免费观看在线禁片| 亚洲电影免费观看| 巨胸喷奶水视频www网免费| 亚洲av无码一区二区三区四区| 日本免费人成视频播放| 日韩免费高清一级毛片| 在线日韩日本国产亚洲| 另类免费视频一区二区在线观看 | 日本一区二区三区在线视频观看免费 | 两个人www免费高清视频| 亚洲国产精品久久久天堂| 120秒男女动态视频免费| 亚洲人成色在线观看| 亚洲精品黄色视频在线观看免费资源| fc2免费人成在线| 亚洲精品视频久久| 国产精品免费看香蕉| 久久免费观看视频| 亚洲午夜电影在线观看高清 | 国产精品亚洲专区在线观看| 精品久久久久久久免费加勒比| 一级特黄录像视频免费| 亚洲视频在线一区二区三区| 日本一道综合久久aⅴ免费| 182tv免费视频在线观看| 亚洲一区二区三区国产精华液| 亚洲最大AV网站在线观看| 国国内清清草原免费视频99|