{"id":117,"date":"2019-12-22T21:52:03","date_gmt":"2019-12-22T13:52:03","guid":{"rendered":"http:\/\/www.hufe.org.cn\/?p=117"},"modified":"2019-12-22T21:54:58","modified_gmt":"2019-12-22T13:54:58","slug":"%e4%b8%80%e4%b8%aa%e7%ae%80%e6%98%93%e7%9a%84h5%e6%95%b0%e6%8d%ae%e5%b1%95%e7%a4%ba%e6%95%88%e6%9e%9c%e3%80%90demo%e3%80%91","status":"publish","type":"post","link":"https:\/\/www.hufe.org.cn\/?p=117","title":{"rendered":"\u4e00\u4e2a\u7b80\u6613\u7684H5\u6570\u636e\u5c55\u793a\u6548\u679c\u3010demo\u3011"},"content":{"rendered":"\n<p><strong>\u5b9e\u73b0\u4ee3\u7801\u5982\u4e0b\uff1a<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\n&lt;html lang=\"en\">\n\n&lt;head>\n    &lt;meta charset=\"UTF-8\">\n    &lt;title>\u6ed1\u52a8\u6548\u679c&lt;\/title>\n    &lt;script src=\"https:\/\/code.jquery.com\/jquery-3.1.1.min.js\">&lt;\/script>\n&lt;\/head>\n&lt;style type=\"text\/css\">\n    * {\n        margin: 0;\n        padding: 0;\n        font-size: 1.8rem;\n        line-height: 5rem;\n    }\n\n    body {\n        background: #557669;\n    }\n\n    .content {\n        width: 100%;\n        height: 30%;\n        overflow: auto;\n        background: white;\n        position: absolute;\n        bottom: 0;\n    }\n\n    .searchInput {\n        position: fixed;\n        width: 100%;\n        height: 4rem;\n        margin-top: -4rem;\n        line-height: 4rem;\n        text-align: center;\n        background: white;\n        border-bottom: 1px solid #666;\n        border-top-left-radius: 1rem;\n        border-top-right-radius: 1rem;\n    }\n\n    li {\n        height: 5rem;\n        border-bottom: 1px solid #666;\n    }\n&lt;\/style>\n\n&lt;body>\n    &lt;div class=\"content\">\n        &lt;div class=\"searchInput\">\u641c\u7d22\u6846&lt;\/div>\n        &lt;ul>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e1&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e2&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e3&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e4&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e5&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e6&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e7&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e8&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e9&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e10&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e11&lt;\/li>\n            &lt;li>\u6d4b\u8bd5\u6570\u636e12&lt;\/li>\n        &lt;\/ul>\n    &lt;\/div>\n&lt;\/body>\n&lt;script type=\"text\/javascript\">\n\n    \/*\u5224\u65ad\u4e0a\u4e0b\u6ed1\u52a8\uff1a*\/\n    $('.searchInput').bind('touchstart', function (e) {\n        startX = e.originalEvent.changedTouches[0].pageX;\n        startY = e.originalEvent.changedTouches[0].pageY;\n    });\n    $(\".searchInput\").bind(\"touchend\", function (e) {\n        \/\/\u83b7\u53d6\u6ed1\u52a8\u7ed3\u675f\u65f6\u5c4f\u5e55\u7684X,Y\n        \/\/ e.originalEvent = event\n        endX = e.originalEvent.changedTouches[0].pageX;\n        endY = e.originalEvent.changedTouches[0].pageY;\n        \/\/\u83b7\u53d6\u6ed1\u52a8\u8ddd\u79bb\n        distanceX = endX - startX;\n        distanceY = endY - startY;\n        \/\/\u5224\u65ad\u6ed1\u52a8\u65b9\u5411\n        if (Math.abs(distanceX) > Math.abs(distanceY) &amp;&amp; distanceX > 0) {\n            console.log('\u5f80\u53f3\u6ed1\u52a8');\n        } else if (Math.abs(distanceX) > Math.abs(distanceY) &amp;&amp; distanceX &lt; 0) {\n            console.log('\u5f80\u5de6\u6ed1\u52a8');\n        } else if (Math.abs(distanceX) &lt; Math.abs(distanceY) &amp;&amp; distanceY &lt; 0) {\n\n            console.log('\u5411\u4e0a\u6ed1\u52a8');\n            \/\/ $(\".content \").animate({ height: \"70%\" })\n\n            var contentStyle = $(\".content \").attr(\"style\");\n            if (!contentStyle || contentStyle == \"height: 30%;\") {\n                $(\".content \").animate({ height: \"70%\" })\n            } else if (contentStyle == \"height: 0%;\") {\n                $(\".content \").animate({ height: \"30%\" })\n            }\n\n        } else if (Math.abs(distanceX) &lt; Math.abs(distanceY) &amp;&amp; distanceY > 0) {\n\n            console.log('\u5411\u4e0b\u6ed1\u52a8');\n            \/\/ $(\".content \").animate({ height: \"30%\" })\n\n            var contentStyle = $(\".content \").attr(\"style\");\n            if (!contentStyle || contentStyle == \"height: 30%;\") {\n                $(\".content \").animate({ height: \"0%\" })\n            } else if (contentStyle == \"height: 70%;\") {\n                $(\".content \").animate({ height: \"30%\" })\n            }\n        }\n\n    });\n&lt;\/script>\n\n&lt;\/html><\/code><\/pre>\n\n\n\n<p>\u62f7\u8d1d\u81f3\u672c\u5730\u53ef\u76f4\u63a5\u8fd0\u884c\u67e5\u770b\u6548\u679c\u3002<\/p>\n\n\n\n<p><strong>\u5f85\u4f18\u5316\uff1a<\/strong><\/p>\n\n\n\n<p>\u6570\u636e\u6eda\u52a8\u5230\u9876\u90e8\u81ea\u52a8\u89e6\u53d1\u641c\u7d22\u6846\u4e0b\u6ed1\u6548\u679c\uff0c\u6570\u636e\u4e0a\u6ed1\u67e5\u770b\u7684\u65f6\u5019\u81ea\u52a8\u89e6\u53d1\u641c\u7d22\u6846\u4e0a\u6ed1\u7684\u6548\u679c\u3002<\/p>\n\n\n\n<p>\uff08\u5224\u65ad\u6eda\u52a8\u6761\u4e8b\u4ef6\u5373\u53ef\uff0c\u6b64\u90e8\u5206\u7b80\u5355\u5c31\u4e0d\u505a\u4e0b\u53bb\u4e86\uff0c\u6709\u5174\u8da3\u7684\u81ea\u884c\u5c1d\u8bd5\uff09<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5b9e\u73b0\u4ee3\u7801\u5982\u4e0b\uff1a \u62f7\u8d1d\u81f3\u672c\u5730\u53ef\u76f4\u63a5\u8fd0\u884c\u67e5\u770b\u6548\u679c\u3002 \u5f85\u4f18\u5316\uff1a \u6570\u636e\u6eda\u52a8\u5230\u9876\u90e8\u81ea\u52a8\u89e6\u53d1\u641c\u7d22\u6846\u4e0b\u6ed1\u6548\u679c\uff0c\u6570\u636e\u4e0a\u6ed1\u67e5\u770b\u7684&hellip;&nbsp;<a href=\"https:\/\/www.hufe.org.cn\/?p=117\" class=\"\" rel=\"bookmark\">\u9605\u8bfb\u66f4\u591a &raquo;<span class=\"screen-reader-text\">\u4e00\u4e2a\u7b80\u6613\u7684H5\u6570\u636e\u5c55\u793a\u6548\u679c\u3010demo\u3011<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","footnotes":""},"categories":[4],"tags":[],"_links":{"self":[{"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=\/wp\/v2\/posts\/117"}],"collection":[{"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=117"}],"version-history":[{"count":1,"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=\/wp\/v2\/posts\/117\/revisions"}],"predecessor-version":[{"id":118,"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=\/wp\/v2\/posts\/117\/revisions\/118"}],"wp:attachment":[{"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=117"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=117"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hufe.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=117"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}