国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

JS實現(xiàn)的鼠標(biāo)跟隨代碼(卡通手型點擊效果)

2019-11-20 11:24:10
字體:
供稿:網(wǎng)友

本文實例講述了JS實現(xiàn)帶有小手點擊效果的鼠標(biāo)跟隨代碼。分享給大家供大家參考,具體如下:

一個跟隨鼠標(biāo)的小手效果,鼠標(biāo)移在哪里,小手就跟著移向哪里,會出現(xiàn)手的效果,放在鏈接上的時候,手會變化,兩只手很可愛哦,JS鼠標(biāo)跟隨代碼分享與大家。

運行效果截圖如下:

在線演示地址如下:

http://demo.VeVB.COm/js/2015/js-handle-style-focus-codes/

具體代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>可愛的鼠標(biāo)跟隨</title><style>html{ background:#000;}body,html,input{ cursor:none;}body,html{ height:100%;}#cursor{ position:absolute; left:100px; top:100px; display:block;}</style><script> window.onload = function(){  var oCursor = document.getElementById("cursor");  document.onmousemove=function (ev){   var oEvent=ev||event,    oWidth = document.documentElement.clientWidth,    oHeight = document.documentElement.clientHeight,    scrollTop=document.documentElement.scrollTop + oEvent.clientY,    scrollLeft=document.documentElement.scrollLeft + oEvent.clientX;   if(scrollTop > oHeight-oCursor.offsetHeight){    oCursor.style.top = oHeight-oCursor.offsetHeight+'px';   }else if(scrollTop < 0){    oCursor.style.top = 0;   }else{    oCursor.style.top = scrollTop+'px';   }   if(scrollLeft > oWidth-oCursor.offsetWidth){    oCursor.style.left = oWidth-oCursor.offsetWidth+'px';   }else{    oCursor.style.left = scrollLeft+'px';   }   document.onmousedown = function(){    oCursor.innerHTML = "<img src='images/cursor_hover.png' />";     return false;   }   document.onmouseup = function(){    oCursor.innerHTML = "<img src='images/cursor.png' />";    }  }; }</script></head><body><div id="cursor"><img src="images/cursor.png" /></div><input type="button" style="font-size:36px; margin:100px;" value="點擊" onclick="window.open('http://www.baidu.com')" /></body></html>

希望本文所述對大家JavaScript程序設(shè)計有所幫助。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 宁化县| 雷山县| 南涧| 巴南区| 奉化市| 梓潼县| 界首市| 潮安县| 灵台县| 达日县| 纳雍县| 仁寿县| 四平市| 景宁| 孝义市| 翁牛特旗| 新竹市| 五指山市| 海盐县| 阿合奇县| 岢岚县| 汝南县| 五峰| 车险| 建水县| 灵山县| 黎平县| 三明市| 阿克苏市| 永德县| 宿迁市| 抚宁县| 濮阳县| 稷山县| 惠东县| 旺苍县| 淳化县| 万安县| 安西县| 达尔| 驻马店市|