일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 안드로이드 바탕화면
- 구글 안드로이드 개발
- Form Stuff
- 안드로이드2.0
- 구글 안드로이드
- 안드로이드 개발 2.0
- 안드로이드2.0개발
- 안드로이드폰
- 안드로이드 2.0 개발
- 안드로이드
- objective-c
- 하루한마디영어
- 스카이 안드로이드폰 시리우스 K양 동영상
- 스마트폰 배경화면
- 스카이 안드로이드폰 시리우스
- 영어
- 구글안드로이드
- 안드로이드 배경화면
- 인기있는 블로그 만들기
- 안드로이드 개발 강좌
- 아이폰 바탕화면
- 하루 한마디 영어
- sky 시리우스폰
- 안드로이드 개발 2.0 강좌
- 안드로이드개발
- 안드로이드 개발
- android
- 아이폰 배경화면
- SKY 시리우스
- MapView
- Today
- Total
moozi
jquery stop() 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery - animate()</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$(document).ready(function(){
$("#box1").animate({
left:"550"
},1000).animate({
top:"550"
},1000).animate({
left:"0"
},1000).animate({
top:"50"
},1000);
$("#btn1").click(function(){
$('div').stop();
});
$("#btn2").click(function(){
$('div').stop(true);// clearQueue가 적용.
});
$("#btn3").click(function(){
$('div').stop(false,true);//clearQueue미적용.gotoEnd적용
});
$("#btn4").click(function(){
$('div').stop(true,true);//clearQueue적용.gotoEnd적용
});
// $("#box2").delay(5000).animate({
// left:"500"
// },2000);
});
</script>
<style>
#box1{
width:300px;
height:300px;
background: orange;
position: absolute;
top:50px;
left:10px;
}
#box2{
width:300px;
height:300px;
background: red;
position: absolute;
top:400px;
left:10px;
}
</style>
</head>
<body>
<button id="btn1">stop()</button>
<button id="btn2">stop(true)</button>
<button id="btn3">stop(false,true)</button>
<button id="btn4">stop(true,true)</button>
<div id="box1"></div>
<!-- <div id="box2">jQuery</div> -->
</body>
</html>
'TIS_2020 > 빅데이터2020_1기' 카테고리의 다른 글
ajaxdb.php (0) | 2020.10.27 |
---|---|
event2.html (0) | 2020.10.26 |
10/23 layout06.html (0) | 2020.10.23 |
10/22 layout06 (0) | 2020.10.22 |
jquery layout (0) | 2020.10.22 |