首頁  >  文章  >  web前端  >  JS實現的滑鼠跟隨程式碼(卡通手型點擊效果)

JS實現的滑鼠跟隨程式碼(卡通手型點擊效果)

PHPz
PHPz轉載
2016-05-16 15:35:062159瀏覽

這篇文章主要介紹了JS實現的滑鼠跟隨程式碼,帶有卡通手型點擊效果。涉及JavaScript滑鼠事件的回應與頁面元素的動態呼叫技巧,需要的朋友可以參考下,具體如下:

一個跟隨滑鼠的小手效果,滑鼠移在哪裡,小手就跟著移向哪裡,會出現手的效果,放在連結上的時候,手會變化,兩隻手很可愛哦,JS滑鼠跟隨程式碼分享與大家。

運作效果截圖如下:

線上簡報網址如下:

http://demo.jb51.net/ 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>可爱的鼠标跟随</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+&#39;px&#39;;
   }else if(scrollTop < 0){
    oCursor.style.top = 0;
   }else{
    oCursor.style.top = scrollTop+&#39;px&#39;;
   }
   if(scrollLeft > oWidth-oCursor.offsetWidth){
    oCursor.style.left = oWidth-oCursor.offsetWidth+&#39;px&#39;;
   }else{
    oCursor.style.left = scrollLeft+&#39;px&#39;;
   }
   document.onmousedown = function(){
    oCursor.innerHTML = "<img src=&#39;images/cursor_hover.png&#39; />"; 
    return false;
   }
   document.onmouseup = function(){
    oCursor.innerHTML = "<img src=&#39;images/cursor.png&#39; />"; 
   }
  };
 }
</script>
</head>
<body>
<p id="cursor"><img src="images/cursor.png" /></p>
<input type="button" style="font-size:36px; margin:100px;" value="点击" onclick="window.open(&#39;http://www.baidu.com&#39;)" />
</body>
</html>

以上就是本章的全部內容,希望對JavaScript程式設計有大家所幫助,更多相關教學請造訪JavaScript影片教學

陳述:
本文轉載於:jb51.net。如有侵權,請聯絡admin@php.cn刪除