真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

js中的運動-創(chuàng)新互聯(lián)

1 簡單運動(勻速)

創(chuàng)新互聯(lián)建站基于成都重慶香港及美國等地區(qū)分布式IDC機房數(shù)據(jù)中心構(gòu)建的電信大帶寬,聯(lián)通大帶寬,移動大帶寬,多線BGP大帶寬租用,是為眾多客戶提供專業(yè)四川電信科技城機房報價,主機托管價格性價比高,為金融證券行業(yè)服務(wù)器托管,ai人工智能服務(wù)器托管提供bgp線路100M獨享,G口帶寬及機柜租用的專業(yè)成都idc公司。
box{
????width:?100px;
????height:?100px;
????background-color:?#ccc;
????position:?absolute;
????top:200px;
????left:?0;
}

????var?obtn?=?document.querySelector('button');
????var?obox?=?document.querySelector('.box');
????//?設(shè)置速度
????var?speed?=?10;
????obtn.onclick=function(){
????//?1?先清除掉定時器
????clearInterval(obox.timer);
????????obox.timer?=?setInterval(function(){
????????obox.style.left?=?obox.offsetLeft?+?speed?+?'px'
????},30);
}

js中的運動js中的運動

2 指定運動的距離(勻速)

js中的運動

js代碼:


????var?obtn?=?document.querySelector('button');
????var?obox?=?document.querySelector('.box');
????var?totalDistance?=?500;
????//?設(shè)置速度
????var?speed?=?10;
????obtn.onclick?=?function()?{
????//?1?先清除掉定時器
????clearInterval(obox.timer);
????obox.timer?=?setInterval(function()?{
????obox.style.left?=?obox.offsetLeft?+?speed?+?'px'
????if(getStyle(obox,'left')?>=?totalDistance){
????//?已經(jīng)到達(dá)目的地了
????obox.style.left?=?totalDistance?+?'px';
????//?同時我們還需要清除掉定時器
????clearInterval(obox.timer);
????}
????},?30);
}
//?封裝獲取樣式的方法??不帶px單位的
function?getStyle(ele,?style)?{
????let?result?=?ele.currentStyle???ele.currentStyle[style]?:?getComputedStyle(ele,?null)[style];
????return?parseInt(result);
}

3 緩沖運動(速度由快到慢,直至停止)

緩沖運動的原理: 速度由距離決定。即: 距離越大速度越大,距離越近,速度越小,直至為0.

js中的運動

4 加速運動(速度由慢到快,直至到達(dá)終點)

加速運動和緩沖運動相反,代碼也不需要做過多的修改

原理:根據(jù)移動的距離來設(shè)置速度,也就是正比關(guān)系

js中的運動

var?obtn?=?document.querySelector('button');
var?obox?=?document.querySelector('.box');
var?totalDistance?=?500;
//?設(shè)置速度
var?speed?=?null;
obtn.onclick?=?function()?{
//?1?先清除掉定時器
clearInterval(obox.timer);
obox.timer?=?setInterval(function()?{
//?1?獲取當(dāng)前運動的距離
var?curPosition?=?getStyle(obox,'left');
//?2?speed是變化的?動態(tài)計算
speed?=?(curPosition?/?10)||1;
//?對speed進(jìn)行取整操作
//?ceil:向上取整
//?floor:?向下取整
//?3?*需要對speed進(jìn)行取整?否則達(dá)不到臨界值
speed?=?speed?>?0??Math.ceil(speed):Math.floor(speed);
obox.style.left?=?obox.offsetLeft?+?speed?+?'px';
console.log(speed);
if(getStyle(obox,'left')?>=?totalDistance){
console.log('我執(zhí)行了沒');
obox.style.left?=?totalDistance?+?'px';
clearInterval(obox.timer);
}
},?30);
}
//?封裝獲取樣式的方法??不帶px單位的
function?getStyle(ele,?style)?{
????let?result?=?ele.currentStyle???ele.currentStyle[style]?:?getComputedStyle(ele,?null)[style];
????return?parseInt(result);
}

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


文章題目:js中的運動-創(chuàng)新互聯(lián)
網(wǎng)頁路徑:http://weahome.cn/article/dpeohd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部