swiperight event
swiperight event
version added: 1.0
설명 : 스 와이프 이벤트가 올바른 방향으로 움직일 때 트리거됩니다.
jQuery( ".selector" ).on( "swiperight", function( event ) { ... } )
올바른 방향으로 1 초 동안 30px 이상의 수평 드래그 (세로로 30px 미만)가 발생할 때 트리거됩니다.
스 와이프 이벤트에 대한 자세한 내용은 스 와이프 이벤트 항목을 참조하십시오.
예:
swiperight 이벤트를 캡처하고 실행하는 간단한 예
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>swiperight 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.swiperight {
background-color: #7ACEF4;
}
</style>
</head>
<body>
<h3>Swipe the green rectangle in the right direction to change its color:</h3>
<div class="box"></div>
<script>
$(function(){
// Bind the swiperightHandler callback function to the swipe event on div.box
$( "div.box" ).on( "swiperight", swiperightHandler );
// Callback function references the event target and adds the 'swiperight' class to it
function swiperightHandler( event ){
$( event.target ).addClass( "swiperight" );
}
});
</script>
</body>
</html>
version added: 1.0
설명 : 스 와이프 이벤트가 올바른 방향으로 움직일 때 트리거됩니다.
jQuery( ".selector" ).on( "swiperight", function( event ) { ... } )
올바른 방향으로 1 초 동안 30px 이상의 수평 드래그 (세로로 30px 미만)가 발생할 때 트리거됩니다.
스 와이프 이벤트에 대한 자세한 내용은 스 와이프 이벤트 항목을 참조하십시오.
예:
swiperight 이벤트를 캡처하고 실행하는 간단한 예
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>swiperight 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.swiperight {
background-color: #7ACEF4;
}
</style>
</head>
<body>
<h3>Swipe the green rectangle in the right direction to change its color:</h3>
<div class="box"></div>
<script>
$(function(){
// Bind the swiperightHandler callback function to the swipe event on div.box
$( "div.box" ).on( "swiperight", swiperightHandler );
// Callback function references the event target and adds the 'swiperight' class to it
function swiperightHandler( event ){
$( event.target ).addClass( "swiperight" );
}
});
</script>
</body>
</html>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 268 | 부트스트랩 | 8년 전 | 3139 | ||
| 267 | 부트스트랩 | 8년 전 | 2923 | ||
| 266 | 부트스트랩 | 8년 전 | 2912 | ||
| 265 | 부트스트랩 | 8년 전 | 3405 | ||
| 264 | 부트스트랩 | 8년 전 | 3147 | ||
| 263 | 부트스트랩 | 8년 전 | 3222 | ||
| 262 | 부트스트랩 | 8년 전 | 2721 | ||
| 261 | 부트스트랩 | 8년 전 | 4841 | ||
| 260 | 부트스트랩 | 8년 전 | 3214 | ||
| 259 | 부트스트랩 | 8년 전 | 2759 | ||
| 258 | 부트스트랩 | 8년 전 | 2786 | ||
| 257 | 부트스트랩 | 8년 전 | 2813 | ||
| 256 | 부트스트랩 | 8년 전 | 3298 | ||
| 255 | 부트스트랩 | 8년 전 | 3490 | ||
| 254 | 부트스트랩 | 8년 전 | 3227 | ||
| 253 | 부트스트랩 | 8년 전 | 4103 | ||
| 252 | 부트스트랩 | 8년 전 | 2887 | ||
| 251 | 부트스트랩 | 8년 전 | 2612 | ||
| 250 | 부트스트랩 | 8년 전 | 2717 | ||
| 249 | 부트스트랩 | 8년 전 | 2426 | ||
| 248 | 부트스트랩 | 8년 전 | 1972 | ||
| 247 | 부트스트랩 | 8년 전 | 1728 | ||
| 246 | 부트스트랩 | 8년 전 | 1999 | ||
| 245 | 부트스트랩 | 8년 전 | 1521 | ||
| 244 | 부트스트랩 | 8년 전 | 2137 | ||
| 243 | 부트스트랩 | 8년 전 | 1890 | ||
| 242 | 부트스트랩 | 8년 전 | 1780 | ||
| 241 | 부트스트랩 | 8년 전 | 1170 | ||
| 240 | 부트스트랩 | 8년 전 | 1618 | ||
| 239 | 부트스트랩 | 8년 전 | 1650 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기