これはばかげているように聞こえるかもしれませんが、私は Jquery noob であり、モバイルで左右にスワイプしたときにサイズを変更する div タグを作成しようとしています。ここのjqueryグルは私を助けてくれますか!!!! ありがとうございました
ここにコードがあります
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
<div class="box">
</div>
<script>
$(function right(){
// 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" );
}
});
$(function left(){
// Bind the swiperightHandler callback function to the swipe event on div.box
$( "div.box" ).on( "swipeleft", swiperightHandler );
// Callback function references the event target and adds the 'swiperight' class to it
function swiperightHandler( event ){
$( event.target ).addClass( "swipeleft" );
}
});
</script>
</body>
</html>