swipeleft event
swipeleft event
version added: 1.0
설명 : 스 와이프 이벤트가 왼쪽 방향으로 이동하면 트리거됩니다.
jQuery( window ).on( "swipeleft", function( event ) { ... } )
왼쪽 방향으로 1 초 동안 30px 이상 (세로로 30px 미만)의 수평 드래그가 발생하면 트리거됩니다.
스 와이프 이벤트에 대한 자세한 내용은 스 와이프 이벤트 항목을 참조하십시오.
예:
스 와이프 레프트 이벤트를 캡처하고 연기하는 간단한 예
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>swipeleft demo</title>
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<style>
html, body { padding: 0; margin: 0; }
html, .ui-mobile, .ui-mobile body {
height: 105px;
}
.ui-mobile, .ui-mobile .ui-page {
min-height: 105px;
}
#nav {
font-size: 200%;
width:17.1875em;
margin:17px auto 0 auto;
}
#nav a {
color: #777;
border: 2px solid #777;
background-color: #ccc;
padding: 0.2em 0.6em;
text-decoration: none;
float: left;
margin-right: 0.3em;
}
#nav a:hover {
color: #999;
border-color: #999;
background: #eee;
}
#nav a.selected,
#nav a.selected:hover {
color: #0a0;
border-color: #0a0;
background: #afa;
}
div.box {
width: 30em;
height: 3em;
background-color: #108040;
}
div.box.swipeleft {
background-color: #7ACEF4;
}
</style>
</head>
<body>
<h3>Swipe the green rectangle in the left direction to change its color:</h3>
<div class="box"></div>
<script>
$(function(){
// Bind the swipeleftHandler callback function to the swipe event on div.box
$( "div.box" ).on( "swipeleft", swipeleftHandler );
// Callback function references the event target and adds the 'swipeleft' class to it
function swipeleftHandler( event ){
$( event.target ).addClass( "swipeleft" );
}
});
</script>
</body>
</html>
version added: 1.0
설명 : 스 와이프 이벤트가 왼쪽 방향으로 이동하면 트리거됩니다.
jQuery( window ).on( "swipeleft", function( event ) { ... } )
왼쪽 방향으로 1 초 동안 30px 이상 (세로로 30px 미만)의 수평 드래그가 발생하면 트리거됩니다.
스 와이프 이벤트에 대한 자세한 내용은 스 와이프 이벤트 항목을 참조하십시오.
예:
스 와이프 레프트 이벤트를 캡처하고 연기하는 간단한 예
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>swipeleft demo</title>
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<style>
html, body { padding: 0; margin: 0; }
html, .ui-mobile, .ui-mobile body {
height: 105px;
}
.ui-mobile, .ui-mobile .ui-page {
min-height: 105px;
}
#nav {
font-size: 200%;
width:17.1875em;
margin:17px auto 0 auto;
}
#nav a {
color: #777;
border: 2px solid #777;
background-color: #ccc;
padding: 0.2em 0.6em;
text-decoration: none;
float: left;
margin-right: 0.3em;
}
#nav a:hover {
color: #999;
border-color: #999;
background: #eee;
}
#nav a.selected,
#nav a.selected:hover {
color: #0a0;
border-color: #0a0;
background: #afa;
}
div.box {
width: 30em;
height: 3em;
background-color: #108040;
}
div.box.swipeleft {
background-color: #7ACEF4;
}
</style>
</head>
<body>
<h3>Swipe the green rectangle in the left direction to change its color:</h3>
<div class="box"></div>
<script>
$(function(){
// Bind the swipeleftHandler callback function to the swipe event on div.box
$( "div.box" ).on( "swipeleft", swipeleftHandler );
// Callback function references the event target and adds the 'swipeleft' class to it
function swipeleftHandler( event ){
$( event.target ).addClass( "swipeleft" );
}
});
</script>
</body>
</html>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 298 | CSS |
선택과집중
|
1개월 전 | 148 | |
| 297 | CSS |
선택과집중
|
3개월 전 | 351 | |
| 296 | CSS |
선택과집중
|
3개월 전 | 302 | |
| 295 | CSS |
선택과집중
|
3개월 전 | 282 | |
| 294 | CSS |
선택과집중
|
4개월 전 | 408 | |
| 293 | CSS |
선택과집중
|
4개월 전 | 354 | |
| 292 | CSS |
선택과집중
|
4개월 전 | 272 | |
| 291 | CSS |
선택과집중
|
4개월 전 | 282 | |
| 290 | CSS |
선택과집중
|
4개월 전 | 326 | |
| 289 | CSS |
선택과집중
|
4개월 전 | 301 | |
| 288 | CSS |
선택과집중
|
4개월 전 | 386 | |
| 287 | CSS |
선택과집중
|
5개월 전 | 338 | |
| 286 | CSS |
선택과집중
|
5개월 전 | 336 | |
| 285 | CSS |
선택과집중
|
5개월 전 | 356 | |
| 284 | CSS |
선택과집중
|
5개월 전 | 241 | |
| 283 | CSS |
|
2년 전 | 1514 | |
| 282 | CSS | 2년 전 | 2490 | ||
| 281 | CSS | 4년 전 | 4019 | ||
| 280 | CSS | 4년 전 | 4544 | ||
| 279 | 반응형웹 | 5년 전 | 2977 | ||
| 278 | 반응형웹 | 5년 전 | 2822 | ||
| 277 | 부트스트랩 | 7년 전 | 5021 | ||
| 276 | 부트스트랩 | 7년 전 | 6575 | ||
| 275 | 부트스트랩 | 7년 전 | 4657 | ||
| 274 | 부트스트랩 | 7년 전 | 6687 | ||
| 273 | 부트스트랩 | 7년 전 | 3356 | ||
| 272 | 부트스트랩 | 7년 전 | 3196 | ||
| 271 | 부트스트랩 | 7년 전 | 3697 | ||
| 270 | 부트스트랩 | 7년 전 | 3217 | ||
| 269 | 부트스트랩 | 7년 전 | 3093 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기