因此,我已經有了一個腳本,允許在我的網站上運行的用戶像雨特徵一樣激活。但我希望他們能夠關閉它?事情是,我不知道如何做到這一點,我已經嘗試過許多不同的事情,例如休息,返回,暫時的事情,但沒有結果,所以我轉向你們聰明的人並知道這一點,然後我做:)Javascript |如何停止正在網站上運行的功能
這是腳本,我激活腳本從一個按鈕與onclick事件。
var amountOfDrops = 150;
var started = false;
function randRange(minNum, maxNum) {
return (Math.floor(Math.random() * (maxNum - minNum + 1)) + minNum);}
// function to generate drops
function createRain() {
if (started === false){
for(i=1;i<amountOfDrops;i++) {
var dropLeft = randRange(0,2400);
var dropTop = randRange(-1000,1400);
$('.rain').append('<div class="drop" id="drop'+i+'"></div>');
$('#drop'+i).css('left',dropLeft);
$('#drop'+i).css('top',dropTop);
}
console.log("Start");
console.log(started);
started = !started; //flips the bool to stop
}else{
console.log("Shut down");
console.log(started);
started = !started; //flips the bool to start
return false;
}}
我已經在互聯網上搜索過,但我找不到任何有關它的東西,所以非常感謝。
編輯(1)
所以,讓我填補一些空白。
這是我爲它CSS:
.drop {
background:-webkit-gradient(linear,0% 0%,0% 100%, from(rgba(13,52,58,1)), to(rgba(255,255,255,0.6)) );
background: -moz-linear-gradient(top, rgba(13,52,58,1) 0%, rgba(255,255,255,.6) 100%);
width:1px;
height:89px;
color: #5cb1d1;
position: absolute;
bottom:200px;
-webkit-animation: fall .63s linear infinite;
-moz-animation: fall .63s linear infinite;
}
/* animate the drops*/
@-webkit-keyframes fall {
to {margin-top:900px;}
}
@-moz-keyframes fall {
to {margin-top:900px;}
}
這是我如何調用它的HTML代碼:
<script type="text/javascript" src="scripts/Rain.js"></script>
<button onclick="createRain()">Start Rain</button>
你是如何調用createRain()函數 –
你叫從循環中'createRain'功能或使用的setTimeout?如果不是那麼你可以從'.rain'組件中刪除所有html元素。 – lkdhruw
從if和else循環中移除兩個start =!。它們是循環讀取的值,如果此動畫無限並且按鈕切換,您想在外部操作它們。具體切換時使用「真」和「假」也更明智。你也應該在開始改變後檢查開始,以確保它處於首選狀態。 – kdyz