js實(shí)現(xiàn)簡(jiǎn)單鼠標(biāo)跟隨效果的方法
來(lái)源:易賢網(wǎng) 閱讀:670 次 日期:2016-06-24 10:52:57
溫馨提示:易賢網(wǎng)小編為您整理了“js實(shí)現(xiàn)簡(jiǎn)單鼠標(biāo)跟隨效果的方法”,方便廣大網(wǎng)友查閱!

鼠標(biāo)跟隨,顧名思義,就是在鼠標(biāo)移動(dòng)的時(shí)候,有個(gè)動(dòng)畫(huà)跟隨著鼠標(biāo)一起移動(dòng)。

要點(diǎn)一:

var oevent = evt || window.event;

這個(gè)是為了兼容ie和ff而寫(xiě)的,在ie下window.event表示event對(duì)象,而ff下,是給事件函數(shù)傳一個(gè)參數(shù),這個(gè)參數(shù)就表示事件對(duì)象。

要點(diǎn)二:

document.onmousemove = function(evt)

鼠標(biāo)跟隨是在鼠標(biāo)移動(dòng)時(shí)發(fā)生的事情。

要點(diǎn)三:

document.documentelement.scrolltop || document.body.scrolltop;

這是為了兼容chrome和其它瀏覽器,滾動(dòng)條距上邊滾動(dòng)的距離,chrome用后邊那個(gè),其它瀏覽器用前面那個(gè)。

要點(diǎn)四:

otop.style.top=oevent.clienty+scrolltop+10+px;

當(dāng)鼠標(biāo)移動(dòng)時(shí)把鼠標(biāo)的當(dāng)前位置賦值給元素的位置值。

oevent.clienty即為鼠標(biāo)的當(dāng)前y坐標(biāo)的位置,加scrolltop的距離是要在滾動(dòng)到不是第一屏的時(shí)候,鼠標(biāo)跟隨效果依然不改變而寫(xiě)。

代碼如下:

<!doctype html>

<html>

<head>

<meta charset=utf-8 />

<title>無(wú)標(biāo)題文檔</title>

<style>

body{margin:0; padding:0}

#to_top{

width:30px;

height:40px;

padding:20px;

font:14px/20px arial;

text-align:center;

background:#06c;

position:absolute;

cursor:pointer;

color:#fff

}

</style>

<script>

window.onload = function(){

var otop = document.getelementbyid(to_top);

document.onmousemove = function(evt){

var oevent = evt || window.event;

var scrollleft = document.documentelement.scrollleft || document.body.scrollleft;

var scrolltop = document.documentelement.scrolltop || document.body.scrolltop;

otop.style.left = oevent.clientx + scrollleft +10 +px;

otop.style.top = oevent.clienty + scrolltop + 10 + px;

}

}

</script>

</head>

<body style=height:1000px;>

<a href=#>文字</a>

<div id=to_top>鼠標(biāo)跟隨</div>

</body>

</html>

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:js實(shí)現(xiàn)簡(jiǎn)單鼠標(biāo)跟隨效果的方法
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類(lèi)型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)