0

サイトからサイトへスワイプしたいのですが、どうすればいいですか?

私のコード:

enter code here 
function processingRoutine() {
var swipedElement = document.getElementById(triggerElementID);
if ( swipeDirection == 'left' ) {
    // REPLACE WITH YOUR ROUTINES
    //swipedElement.style.backgroundColor = 'orange';
    event.preventDefault();
} else if ( swipeDirection == 'right' ) {
    // REPLACE WITH YOUR ROUTINES
    //swipedElement.style.backgroundColor = 'green';
    event.preventDefault();
} else if ( swipeDirection == 'up' ) {
    // REPLACE WITH YOUR ROUTINES
    //swipedElement.style.backgroundColor = 'maroon';
} else if ( swipeDirection == 'down' ) {
    // REPLACE WITH YOUR ROUTINES
    //swipedElement.style.backgroundColor = 'purple';
}

およびhtmlコード

enter code here
<?php
include ("y.html");
?>
</div>
<div class="swipe-item" data-part="1">Ich bin Seite Y</div>
<button onclick="jQuery('#swiper').trigger('left')">Swipe Up</button>    
<button onclick="jQuery('#swiper').trigger('right')">Swipe Down</button>

私はこのようになりたい:

x-html (スワイプ) から y.html

y-html (スワイプ) から x.html

行ったり来たり、助けが必要

4

0 に答える 0