国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

手機端滑屏翻頁,頁面元素動畫

YancyYe / 2494人閱讀

摘要:引入文件頁面結構控制翻屏邏輯直接跳到第頁設置滑動頁面的統一樣式

引入touch.js文件
//     Zepto.js
//     (c) 2010-2014 Thomas Fuchs
//     Zepto.js may be freely distributed under the MIT license.

;(function($){
    var touch = {},
        touchTimeout, tapTimeout, swipeTimeout, longTapTimeout,
        longTapDelay = 750,
        gesture

    function swipeDirection(x1, x2, y1, y2) {
        return Math.abs(x1 - x2) >=
        Math.abs(y1 - y2) ? (x1 - x2 > 0 ? "Left" : "Right") : (y1 - y2 > 0 ? "Up" : "Down")
    }

    function longTap() {
        longTapTimeout = null
        if (touch.last) {
            touch.el.trigger("longTap")
            touch = {}
        }
    }

    function cancelLongTap() {
        if (longTapTimeout) clearTimeout(longTapTimeout)
        longTapTimeout = null
    }

    function cancelAll() {
        if (touchTimeout) clearTimeout(touchTimeout)
        if (tapTimeout) clearTimeout(tapTimeout)
        if (swipeTimeout) clearTimeout(swipeTimeout)
        if (longTapTimeout) clearTimeout(longTapTimeout)
        touchTimeout = tapTimeout = swipeTimeout = longTapTimeout = null
        touch = {}
    }

    function isPrimaryTouch(event){
        return (event.pointerType == "touch" ||
            event.pointerType == event.MSPOINTER_TYPE_TOUCH)
            && event.isPrimary
    }

    function isPointerEventType(e, type){
        return (e.type == "pointer"+type ||
        e.type.toLowerCase() == "mspointer"+type)
    }

    $(document).ready(function(){
        var now, delta, deltaX = 0, deltaY = 0, firstTouch, _isPointerType

        if ("MSGesture" in window) {
            gesture = new MSGesture()
            gesture.target = document.body
        }

        $(document)
            .bind("MSGestureEnd", function(e){
                var swipeDirectionFromVelocity =
                    e.velocityX > 1 ? "Right" : e.velocityX < -1 ? "Left" : e.velocityY > 1 ? "Down" : e.velocityY < -1 ? "Up" : null;
                if (swipeDirectionFromVelocity) {
                    touch.el.trigger("swipe")
                    touch.el.trigger("swipe"+ swipeDirectionFromVelocity)
                }
            })
            .on("touchstart MSPointerDown pointerdown", function(e){
                if((_isPointerType = isPointerEventType(e, "down")) &&
                    !isPrimaryTouch(e)) return
                //console.log(e);
                firstTouch = _isPointerType ? e : e.originalEvent.touches[0]
                if (e.touches && e.touches.length === 1 && touch.x2) {
                    // Clear out touch movement data if we have it sticking around
                    // This can occur if touchcancel doesn"t fire due to preventDefault, etc.
                    touch.x2 = undefined
                    touch.y2 = undefined
                }
                now = Date.now()
                delta = now - (touch.last || now)
                touch.el = $("tagName" in firstTouch.target ?
                    firstTouch.target : firstTouch.target.parentNode)
                touchTimeout && clearTimeout(touchTimeout)
                touch.x1 = firstTouch.pageX
                touch.y1 = firstTouch.pageY
                if (delta > 0 && delta <= 250) touch.isDoubleTap = true
                touch.last = now
                longTapTimeout = setTimeout(longTap, longTapDelay)
                // adds the current touch contact for IE gesture recognition
                if (gesture && _isPointerType) gesture.addPointer(e.pointerId);
            })
            .on("touchmove MSPointerMove pointermove", function(e){
                // e.preventDefault()
                if((_isPointerType = isPointerEventType(e, "move")) &&
                    !isPrimaryTouch(e)) return
                firstTouch = _isPointerType ? e : e.originalEvent.touches[0]
                cancelLongTap()
                touch.x2 = firstTouch.pageX
                touch.y2 = firstTouch.pageY

                deltaX += Math.abs(touch.x1 - touch.x2)
                deltaY += Math.abs(touch.y1 - touch.y2)
            })
            .on("touchend MSPointerUp pointerup", function(e){
                if((_isPointerType = isPointerEventType(e, "up")) &&
                    !isPrimaryTouch(e)) return
                cancelLongTap()

                // swipe
                if ((touch.x2 && Math.abs(touch.x1 - touch.x2) > 30) ||
                    (touch.y2 && Math.abs(touch.y1 - touch.y2) > 30))

                    swipeTimeout = setTimeout(function() {
                        touch.el.trigger("swipe")
                        touch.el.trigger("swipe" + (swipeDirection(touch.x1, touch.x2, touch.y1, touch.y2)))
                        touch = {}
                    }, 0)

                // normal tap
                else if ("last" in touch)
                // don"t fire tap when delta position changed by more than 30 pixels,
                // for instance when moving to a point and back to origin
                    if (deltaX < 30 && deltaY < 30) {
                        // delay by one tick so we can cancel the "tap" event if "scroll" fires
                        // ("tap" fires before "scroll")
                        tapTimeout = setTimeout(function() {

                            // trigger universal "tap" with the option to cancelTouch()
                            // (cancelTouch cancels processing of single vs double taps for faster "tap" response)
                            var event = $.Event("tap")
                            event.cancelTouch = cancelAll
                            touch.el.trigger(event)

                            // trigger double tap immediately
                            if (touch.isDoubleTap) {
                                if (touch.el) touch.el.trigger("doubleTap")
                                touch = {}
                            }

                            // trigger single tap after 250ms of inactivity
                            else {
                                touchTimeout = setTimeout(function(){
                                    touchTimeout = null
                                    if (touch.el) touch.el.trigger("singleTap")
                                    touch = {}
                                }, 250)
                            }
                        }, 0)
                    } else {
                        touch = {}
                    }
                deltaX = deltaY = 0

            })
            // when the browser window loses focus,
            // for example when a modal dialog is shown,
            // cancel all ongoing events
            .on("touchcancel MSPointerCancel pointercancel", cancelAll)

        // scrolling the window indicates intention of the user
        // to scroll, not tap or swipe, so cancel all ongoing events
        $(window).on("scroll", cancelAll)

    });
    
    ["swipe", "swipeLeft", "swipeRight", "swipeUp", "swipeDown",
        "doubleTap", "tap", "singleTap", "longTap"].forEach(function(eventName){
            $.fn[eventName] = function(callback){ return this.on(eventName, callback) }
        })

    document.addEventListener("touchmove", function(event) {
        event.preventDefault();
    }, { passive: false });
})(jQuery)
html頁面結構
js 控制翻屏邏輯
var pageLength = $(".page").length;
$(".wrapper").bind("swipeUp", function () {
    pageNum++;
    if (pageNum > pageLength) {
        pageNum = pageLength;
        return
    }
    toPage(pageNum - 1, pageNum);
}).bind("swipeDown", function () {
    pageNum--;
    if (pageNum <= 0) {
        pageNum = 1;
        return
    }
    toPage(pageNum + 1, pageNum);
});
$(".page2-btn").click(function(){
    directTo(3); // 直接跳到第3頁
});
function toPage(currentNum, nextNum) {
    if (swipeFlag) {
        return
    }
    swipeFlag = true;
    setTimeout(function () {
        $(".page").removeClass("active");
        $(".page" + nextNum).addClass("active");
        // if (nextNum == 2) {
        //     setTimeout(function () {
        //         $(".hand").fadeIn();
        //     }, 2000)
        // } else {
        //     $(".hand").fadeOut();
        // }
        swipeFlag = false;
    } , 1400);  
}
function directTo(pageNum) {
    $(".page").removeClass("active");
    $(".page" + pageNum).addClass("active");
}
css設置
$speed: 1;
$durations: 1s;
html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #141a28;
}
.pages {
    width: 100%;
    height: 100%;
    position: relative;
}

.page {
    display: none;
    /*滑動頁面的統一樣式 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    // transform: translate3d(0px, 100%, 0px);
    // -webkit-transform: translate3d(0px, 100%, 0px);
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
}
.active {
    display: block !important;
}
.active{
    animation: pageFadeIn .5s ease-out both;
    -webkit-animation: pageFadeIn .5s ease-out both;
}
.page1.active{
    .page1-img1{
        -webkit-animation: pulse $durations 1s * $speed ease-out backwards;
        animation: pulse $durations 1s * $speed ease-out backwards;
    }
    .page1-img2{
        -webkit-animation: fadeIn $durations .5s * $speed ease-out backwards;
        animation: fadeIn $durations .5s * $speed ease-out backwards;
    }
    .page1-img3{
        -webkit-animation: fadeIn $durations 1.5s * $speed ease-out backwards;
        animation: fadeIn $durations 1.5s * $speed ease-out backwards;
    }
}
@keyframes pulse {
    0% {
        opacity: 0;
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/89821.html

相關文章

  • 分享一個移動端滑到底部翻頁的代碼

    摘要:如果有其他需求,比如返回例子中直接返回,可以修改中的代碼,就不贅述了 今天在技術群看到有朋友有需求,就隨手寫了一個,大家隨便看看~demo地址:http://www.dtzhuanjia.com/pri...(備注:這個主要用在移動端,所以用rem隨便寫了寫樣式= =PC看著不舒服用模擬器看吧) html: 下一頁 ...

    heartFollower 評論0 收藏0
  • 分享一個移動端滑到底部翻頁的代碼

    摘要:如果有其他需求,比如返回例子中直接返回,可以修改中的代碼,就不贅述了 今天在技術群看到有朋友有需求,就隨手寫了一個,大家隨便看看~demo地址:http://www.dtzhuanjia.com/pri...(備注:這個主要用在移動端,所以用rem隨便寫了寫樣式= =PC看著不舒服用模擬器看吧) html: 下一頁 ...

    hzc 評論0 收藏0
  • 分享一個移動端滑到底部翻頁的代碼

    摘要:如果有其他需求,比如返回例子中直接返回,可以修改中的代碼,就不贅述了 今天在技術群看到有朋友有需求,就隨手寫了一個,大家隨便看看~demo地址:http://www.dtzhuanjia.com/pri...(備注:這個主要用在移動端,所以用rem隨便寫了寫樣式= =PC看著不舒服用模擬器看吧) html: 下一頁 ...

    kumfo 評論0 收藏0
  • 隨手記 - 瘋狂觸發滾輪事件的Mac觸控板

    摘要:這個來的莫名其妙,問了一圈人也沒什么思路,后來自己上網搜,在一個頁面上找到一段關于的觸控板的手勢滑動會瘋狂觸發滾輪事件的記錄,但是輪到具體的解決方案就語焉不詳了。 頭幾天官網剛上線,就接到投訴說有問題。過去一看,我靠什么鬼?!Mac下用觸控板一滑到底,——首頁上用iscroll寫的翻頁效果直接全軍覆沒。 這個bug來的莫名其妙,問了一圈人也沒什么思路,后來自己上網搜,在一個頁面上找到一...

    RobinTang 評論0 收藏0
  • 第六天 移動端Web開發注意事項

    摘要:隨著移動互聯網的發展,移動已經逐漸成為互聯網的主要入口,隨之而來的是前端在移動開發上面臨的各種機遇與挑戰,本文就一些常見移動端問題對移動開發需要注意的事項進行一下總結,必然不可能涉及方方面面,但會隨著筆者的積累持續更新。 隨著移動互聯網的發展,移動Web已經逐漸成為互聯網的主要入口,隨之而來的是前端在移動Web開發上面臨的各種機遇與挑戰,本文就一些常見移動端問題對移動Web開發需要注意...

    妤鋒シ 評論0 收藏0

發表評論

0條評論

YancyYe

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<