zepto.fullpage

内容来自:颜海镜

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <title>Document</title>
    <style>
    /*global.css*/
    .wp{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
    }
    .page{
        font-size: 72px;
        line-height: 320px;
        text-align: center;
    }
    .page1{
        background: red;
    }
    .page2{
        background: yellow;
    }
    .page3{
        background: maroon;
    }
    .page4{
        background: green;
    }

    /* 箭头 */
    /*@-webkit-keyframes start {
        0%,30% {
            opacity: 0.2;
            -webkit-transform: translate(0,10px);
        }
        60% {
            opacity: 1;
            -webkit-transform: translate(0,0);
        }
        100% {
            opacity: 0.2;
            -webkit-transform: translate(0, -5px);
        }
    }
    @keyframes start {
        0%,30% {
            opacity: 0.2;
            transform: translate(0,10px);
        }
        60% {
            opacity: 1;
            transform: translate(0,0);
        }
        100% {
            opacity: 0.2;
            transform: translate(0, -5px);
        }
    }*/
    @-webkit-keyframes start{
        from{
            opacity: 1;
        }
        to{
            -webkit-transform:translate(-100%);
            opacity: 0;
        }
    }
    @keyframes start{
        from{
            opacity: 1;
        }
        to{
            transform:translateY(-100%);
            opacity: 0;
        }
    }
    .start{
        position: fixed;
        top: 95%;
        left: 50%;
        margin-left: -17px;
        margin-top: -34px;
        width: 34px;
        height: 34px;
    }
    .start b{
        position: absolute;
        top: 10px;
        left: 50%;
        margin-left: -9px;
        width: 19px;
        height: 12px;
        background: url(img/arrow.png);
        background-size: 100% 100%;
        -webkit-animation: start 1.5s  ease infinite;
        animation: start 1.5s  ease infinite;
    }
    /*fullpage.css*/
    .fullPage-wp{
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    .fullPage-wp:after {
        display: block;
        content: ‘ ‘;
        height: 0;
        clear: both;
    }
    .fullPage-wp.anim{
        -webkit-transition: all 500ms ease-out 0s;
        transition: all 500ms ease-out 0s;
    }
    .fullPage-page{
        display: block;
        overflow: hidden;
    }

    .fullPage-dir-h {
        float: left;
    }

    /*this page css*/
    [data-dir]{
        position: absolute;
        z-index: 9999;
    }
    [data-dir]:nth-child(1){
        top: 100px;
        right: 0;
    }
    [data-dir]:nth-child(2){
        top: 140px;
        right: 0;
    }

    .indicator{
        position: fixed;
        right: 10px;
        top: 50%;
        margin-top: -40px;
    }
    .indicator li{
        margin-top: 10px;
        width: 10px;
        height: 10px;
        border-radius: 100px;
        background: rgba(0,0,0,0.5);
        text-indent: -9999px;
        list-style: none;
    }
    .indicator li.cur{
        background: rgba(255,255,255,0.5);
    }
    </style>
</head>
<body>
    <div class="wp">
        <a href="" id="prev" data-dir="movePrev">向前</a>
        <a href="" id="next" data-dir="moveNext">向后</a>
        <div class="wp-inner">
            <div class="page page1">1</div>
            <div class="page page2">2</div>
            <div class="page page3">3</div>
            <div class="page page4">4</div>
        </div>
        <ul class="indicator">
            <li>1</li>
            <li>2</li>
            <li>3</li>
            <li>4</li>
        </ul>
    </div>
    <span class="start"><b></b></span>
    <script src="js/zepto.min.js"></script>
    <script src="js/zepto.fullpage.js"></script>
    <script>
        $(‘.wp-inner‘).fullpage({
            page: ‘.page‘,
            start: 0,
            duration: 500,
            drag: false,
            loop: false,
            dir: ‘v‘,
            der:0.1,//当滑动距离大于一个值时,才会引起滑动现象,滑动距离=der*屏幕高度|宽度
            change: function (e) {
                console.log(‘change‘, e.next, e.cur);
                $(‘.indicator li‘).removeClass(‘cur‘).eq(e.cur).addClass(‘cur‘);
            },
            beforeChange: function (e) {
                console.log(‘beforeChange‘, e.next, e.cur);
            },
            afterChange: function (e) {
                console.log(‘afterChange‘, e.next, e.cur);
            },
            orientationchange: function () {}
        });

        $("#prev,#next").on(‘click‘,function(e){
            e.preventDefault();
            $.fn.fullpage[$(this).data(‘dir‘)](true);
        });

        // update:此方法会重新计算和渲染每屏的高度,当你发现如果每屏的高度有问题时,手动调用下此方法就可以了。
        // moveTo:切换到指定屏,如果指定的屏数大于屏总数或小于0,都会做修正处理。
        // movePrev:向前一屏,是对moveTo的封装。
        // moveNext:向后一屏,是对moveTo的封装。
        // start:开启切换功能,和stop配合使用。丰富页面功能,比如到了某页需要点击某个元素后才能到下一页的时候 这个就有用了~~
        // stop:关闭切换功能,和start配合使用。
        // getCurIndex:获取当前位于第几屏的方法。
    </script>
</body>
</html>
时间: 2024-10-13 17:01:42

zepto.fullpage的相关文章

几种fullpage用法及demo

jQuery全屏滚动插件fullPage.js https://github.com/alvarotrigo/fullPage.js http://www.dowebok.com/77.html 全屏/整屏滚动组件fullPage(不依赖jquery) https://github.com/powy1993/fullpage http://www.dowebok.com/143.html 专注于移动端的fullPage.js https://github.com/yanhaijing/zepto

前端网站资源精编!!

不要吝啬你的赞美喜欢就点个赞 目录: 1-------- 走进前端2-------- jQuery3-------- CSS4-------- Angularjs5-------- ES66-------- React7-------- 移动端API8-------- avalon9-------- Requriejs10-------- vue11-------- Seajs12-------- Less,sass13-------- Markdown14-------- D315------

看着看着就哭了的前端地址大全

原文地址:http://www.w3cfuns.com/notes/16438/db8e9e0bf80676f32b2cafb9b4932313.html 综合类 | 地址--- | --- 前端知识体系|http://www.cnblogs.com/sb19871023/p/3894452.html前端知识结构|https://github.com/JacksonTian/fksWeb前端开发大系概览|https://github.com/unruledboy/WebFrontEndStack

学习视频笔记1

网页的制作流程./ 根据客户的需求制作效果图. 结构图,根据效果图写构架,切图. 代码准备. 边写代码,边测试.(主要兼容性) 线上测试. 代码的标准流,浮动流,定位流 能用标准流做的,就不要用浮动流., 能用浮动流做的,就不要用定位刘. 盒子本身的宽和高 Padding Magin 按照稳定性来说,首先,考虑的是盒子本身的宽度和高度, 其次,我们考虑padding 最后我们再考虑margin 比如火狐,谷歌,浏览器默认的字体大小事16px 个人经验:行高应该比字体大6-7像素 比如:字体是12

Github上值得关注的前端项目-转自好友trigkit4

http://microjs.com/# 该网站的资源都托管到了github,microjs.com是一个可以让你选择微型的js类库的网站,该网站里的js库都是压缩后不大于5KB的,非常实用 https://plainjs.com/(10.22更新) The Vanilla JavaScript Repository,该仓库都是用原生js写的插件和组件,很实用.里面的项目也都托管到了github 综合/资源 frontend-dev-bookmarks 一个巨大的前端开发资源清单.star:15

前端相关网址合集

综合类 | 地址--- | --- 前端知识体系--http://www.cnblogs.com/sb19871023/p/3894452.html前端知识结构--https://github.com/JacksonTian/fks免费的编程中文书籍索引--https://github.com/justjavac/free-programming-books-zh_CN智能社 - 精通JavaScript开发--http://study.163.com/course/introduction/2

自己整理的一些前端资料

综合类 | 地址 --- | --- 前端知识体系|http://www.cnblogs.com/sb19871023/p/3894452.html 前端知识结构|https://github.com/JacksonTian/fks Web前端开发大系概览|https://github.com/unruledboy/WebFrontEndStack Web前端开发大系概览-中文版|http://www.cnblogs.com/unruledboy/p/WebFrontEndStack.html

github上值得关注的前端项目

github上值得关注的前端项目 http://microjs.com/# 该网站的资源都托管到了github,microjs.com是一个可以让你选择微型的js类库的网站,该网站里的js库都是压缩后不大于5KB的,非常实用 https://plainjs.com/(10.22更新) The Vanilla JavaScript Repository,该仓库都是用原生js写的插件和组件,很实用.里面的项目也都托管到了github 综合/资源 frontend-dev-bookmarks 一个巨大

Git原理入门解析

前言: 之前听过公司大佬分享过 Git 原理之后就想来自己总结一下,最近一忙起来就拖得久了,本来想塞更多的干货,但是不喜欢拖太久,所以先出一版足够入门的: 一.Git 简介 Git 是当前流行的分布式版本控制管理工具,最初由 Linux Torvalds (Linux 之父) 创造,于 2005 年发布. Git,这个词其实源自英国俚语,意思大约是 “混账”.Linux 为什么会以这样自嘲的名字来命名呢?这其中还有一段儿有趣的历史可以说一说: 以下摘自:https://www.liaoxuefe