JS實現(xiàn)網(wǎng)頁游戲中滑塊響應(yīng)鼠標(biāo)點擊移動效果
本文實例講述了JS實現(xiàn)網(wǎng)頁游戲中滑塊響應(yīng)鼠標(biāo)點擊移動效果。分享給大家供大家參考,具體如下:
這是網(wǎng)頁游戲中的一個有趣效果,可以完成以下幾個動作:滾動、scroll 8個方向、鼠標(biāo)坐標(biāo)獲娶對象上下左右位置獲取,大家可以自己添加、MoveReady和ScrollReady兩個注釋掉了 取消注釋后防止鼠標(biāo)連續(xù)點擊效果疊加。
在線演示地址如下:
http://demo.jb51.net/js/2015/js-web-game-click-move-demo/
具體代碼如下:
<!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>網(wǎng)頁游戲中的一個有趣效果</title>
<style type="text/css">
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,address,big,cite,del,em,img,ins,small,strong,sub,sup,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,tbody,tfoot,tr,th,td{margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;}
body{font:12px/24px "宋體";background:#fff;color:#333;}
ol, ul{list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content:none;}
:focus {outline:0;}
ins {text-decoration:none;}
del {text-decoration:line-through;}
table {border-collapse:collapse;border-spacing:0;}
label{cursor:pointer}
input[type="button"]{cursor:pointer}
button{cursor:pointer}
strong{font-weight:normal;}
em{font-style:normal}
a{text-decoration:none;color:#f60}
a:hover{text-decoration:underline;}
.block{width:200px;height:200px;background:#e63;position:absolute;left:50%;top:50%;border:3px solid #fdd;overflow:hidden;}
.moveBlock{width:1900px;height:2728px;background:url("http://img.jbzj.com/file_images/article/201510/2015101993654799.jpg") left top;}
</style>
<script type="text/javascript">
var ie = ! -[1, ], myDate = new Date();
function Sin(x,v) {
var y = Math.round(Math.sin(Math.PI*x/180)*100)/100;
return ie?y*v*3:y*v;
}
/*返回數(shù)組序號*/
Num = function(e, eles) {
for (var i = 0; i < eles.length; i++) {
if (eles[i] == e) { return i; }
}
}
/*字符串判定*/
GetCur = function(Str, cur) {
var str = new RegExp(cur, "gi")
return str.test(Str);
}
/*DOM構(gòu)造*/
var div=function(id){return new HtmlEle.init(id);}
HtmlEle={
init:function(id){
this[0]=id==Object?id:document.getElementById(id);
return this;
},
css:function(s){
for(var i in s){
this[0].style[i]=s[i];
}
},
Obj:function(){
var obj=this[0];
var objTop=obj.offsetTop,objLeft=obj.offsetLeft,objWidth=obj.offsetWidth,objHeight=obj.offsetHeight;
return {top:objTop,right:objLeft+objWidth,bottom:objTop+objHeight,left:objLeft,width:objWidth,height:objHeight}
},
MoveReady:true,
Move:function(s,point){
var obj=this[0],n=0,v=s,main=this,v2=90;
if(this.MoveReady==true){
//main.MoveReady=false;
var Top=function(){
n=n<v2?n+1:n;
var m=Sin(n,v);
if(m<Math.abs(s)){obj.style.top=P-m+"px"}else{obj.style.top=P-s+"px";clearInterval(myMove);main.MoveReady=true;};
}
var Right=function(){
n=n<v2?n+1:n;
var m=Sin(n,v);
if(m<Math.abs(s)){obj.style.left=P+m+"px"}else{obj.style.right=P+s+"px";clearInterval(myMove);main.MoveReady=true;};
}
var Bottom=function(){
n=n<v2?n+1:n;
var m=Sin(n,v);
if(m<Math.abs(s)){obj.style.top=P+m+"px"}else{obj.style.top=P+s+"px";clearInterval(myMove);main.MoveReady=true;};
}
var Left=function(){
n=n<v2?n+1:n;
var m=Sin(n,v);
if(m<Math.abs(s)){obj.style.left=P-m+"px"}else{obj.style.left=P-s+"px";clearInterval(myMove);main.MoveReady=true;};
}
switch(point){
case "top" : var P=obj.offsetTop,Point=Top;break;
case "right" : var P=obj.offsetLeft,Point=Right;break;
case "bottom" : var P=obj.offsetTop,Point=Bottom;break;
case "left" : var P=obj.offsetLeft,Point=Left;break;
}
var myMove=setInterval(Point,5)
}
},
ScrollReady:true,
Scroll:function(s,point){
var obj=this[0],n=0,v=s,main=this,v2=90;
if(this.ScrollReady==true){
//main.ScrollReady=false;
var Top=function(){
n=n<v2?n+1:n;
var m=Sin(n,v);
if(m<Math.abs(s)){obj.scrollTop=P+m}else{obj.scrollTop=P+s;clearInterval(myMove);main.ScrollReady=true;};
}
var Right=function(){
n=n<v2?n+1:n;
var m=Sin(n,v);
if(m<Math.abs(s)){obj.scrollLeft=P-m}else{obj.scrollLeft=P-s;clearInterval(myMove);main.ScrollReady=true;};
}
var Bottom=function(){
n=n<v2?n+1:n;
var m=Sin(n,v);
if(m<Math.abs(s)){obj.scrollTop=P-m}else{obj.scrollTop=P-s;clearInterval(myMove);main.ScrollReady=true;};
}
var Left=function(){
n=n<v2?n+1:n;
var m=Sin(n,v);
if(m<Math.abs(s)){obj.scrollLeft=P+m}else{obj.scrollLeft=P+s;clearInterval(myMove);main.ScrollReady=true;};
}
switch(point){
case "top" : var P=obj.scrollTop,Point=Top;break;
case "right" : var P=obj.scrollLeft,Point=Right;break;
case "bottom" : var P=obj.scrollTop,Point=Bottom;break;
case "left" : var P=obj.scrollLeft,Point=Left;break;
}
var myMove=setInterval(Point,5)
}
},
Mouse:function(e,f){
switch(e){
case "click" : this[0].onclick=f;break;
case "dbclick" : this[0].ondblclick=f;break;
case "over" : this[0].onmouseover=f;break;
case "out" : this[0].onmouseout=f;break;
}
},
MouseSite:function(e){
var e=e?e:window.event;
return {x:e.clientX,y:e.clientY}
}
}
HtmlEle.init.prototype=HtmlEle;
</script>
</head>
<body>
<div class="block" id="moveBlock">
<div class="moveBlock"></div>
</div>
<script type="text/javascript">
var sBlock=new div("moveBlock");
document.onclick=function(){
var site=sBlock.MouseSite(arguments[0]),s=200,b=30;
var objSite=sBlock.Obj();
if(objSite.left<site.x && objSite.left+objSite.width/2-b>site.x && objSite.top<site.y &&objSite.bottom>site.y)
sBlock.Scroll(s,"left");
if(objSite.right>site.x && objSite.right-objSite.width/2+b<site.x && objSite.top<site.y &&objSite.bottom>site.y)
sBlock.Scroll(s,"right");
if(objSite.top<site.y && objSite.top+objSite.height/2-b>site.y && objSite.left<site.x && objSite.right>site.x)
sBlock.Scroll(s,"top");
if(objSite.bottom>site.y && objSite.bottom-objSite.height/2+b<site.y)
sBlock.Scroll(s,"bottom");
if(objSite.left>site.x)
sBlock.Move(s,"left");
if(objSite.right<site.x)
sBlock.Move(s,"right");
if(objSite.top>site.y)
sBlock.Move(s,"top");
if(objSite.bottom<site.y)
sBlock.Move(s,"bottom");
}
window.onload=function(){sBlock[0].scrollTop=0;sBlock[0].scrollLeft=0;}
</script>
</body>
</html>
希望本文所述對大家JavaScript程序設(shè)計有所幫助。
- Vue 實現(xiàn)拖動滑塊驗證功能(只有css+js沒有后臺驗證步驟)
- 基于JS組件實現(xiàn)拖動滑塊驗證功能(代碼分享)
- 基于JavaScript實現(xiàn)拖動滑塊效果
- Javascript實現(xiàn)滑塊滑動改變值的實現(xiàn)代碼
- js實現(xiàn)兼容PC端和移動端滑塊拖動選擇數(shù)字效果
- JS響應(yīng)鼠標(biāo)點擊實現(xiàn)兩個滑塊區(qū)間拖動效果
- js用拖動滑塊來控制圖片大小的方法
- 基于Vue.js實現(xiàn)tab滑塊效果
- Javascript 鼠標(biāo)移動上去小三角形滑塊緩慢跟隨效果
- 原生js實現(xiàn)滑塊區(qū)間組件
相關(guān)文章
onsubmit阻止form表單提交與onclick的相關(guān)操作
return false會阻止表單提交,基本上關(guān)于onsubmit=return false有以下幾點要注意的地方,學(xué)習(xí)后臺編程的朋友一定要知道。2010-09-09
JS圖片預(yù)加載 JS實現(xiàn)圖片預(yù)加載應(yīng)用
由于圖片加載慢,導(dǎo)致用戶體驗特別差,本文將介紹一種圖片預(yù)加載技術(shù),需要了解的朋友可以參考下2012-12-12
document.selection.createRange方法與實例
document.selection.createRange() 根據(jù)當(dāng)前文字選擇返回 TextRange 對象,或根據(jù)控件選擇返回 ControlRange 對象2006-10-10
JavaScript定時器設(shè)置、使用與倒計時案例詳解
這篇文章主要介紹了JavaScript定時器設(shè)置、使用與倒計時案例,詳細(xì)分析了javascript定時器的設(shè)置、取消、循環(huán)調(diào)用并附帶一個倒計時功能應(yīng)用案例,需要的朋友可以參考下2019-07-07
ECharts柱狀排名圖柱子上方顯示文字與圖標(biāo)代碼實例
我們在繪制柱狀圖時如果想要柱條上顯示文字,可以參考本文,這篇文章主要給大家介紹了關(guān)于ECharts柱狀排名圖柱子上方顯示文字與圖標(biāo)的相關(guān)資料,需要的朋友可以參考下2023-11-11
JavaScript Dom實現(xiàn)輪播圖原理和實例
這篇文章主要為大家詳細(xì)介紹了JavaScript Dom實現(xiàn)輪播圖原理和實例,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2021-02-02
ECharts?formatter屬性設(shè)置的3種方法(字符串模板,函數(shù)模板,回調(diào)函數(shù))
formatter有兩種寫法,一種字符串模板,另一種是回調(diào)函數(shù),下面這篇文章主要給大家介紹了關(guān)于ECharts?formatter屬性設(shè)置的3種方法,分別是字符串模板,函數(shù)模板,回調(diào)函數(shù),需要的朋友可以參考下2023-02-02

