{"id":2320,"date":"2017-05-16T10:47:19","date_gmt":"2017-05-16T02:47:19","guid":{"rendered":"http:\/\/www.qdabc.cn\/?p=2320"},"modified":"2017-05-16T10:47:19","modified_gmt":"2017-05-16T02:47:19","slug":"%e7%99%be%e5%8f%b6%e7%aa%97%e5%8a%a0%e8%bd%bd%e6%95%88%e6%9e%9c","status":"publish","type":"post","link":"http:\/\/www.qdabc.cn\/?p=2320","title":{"rendered":"\u767e\u53f6\u7a97\u52a0\u8f7d\u6548\u679c"},"content":{"rendered":"<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"en\"&gt;\r\n&lt;head&gt;\r\n\t&lt;meta charset=\"UTF-8\"&gt;\r\n\t&lt;title&gt;Document&lt;\/title&gt;\r\n\t&lt;style&gt;\r\n         #ula{\r\n         \twidth:200px;\r\n         \theight: 400px;\r\n         \tmargin: 0;\r\n         }\r\n         #ula li{\r\n            position: relative;\r\n            width: 100%;\r\n            height: 40px;\r\n            list-style: none;\r\n            overflow: hidden;\r\n            border: 1px solid red;\r\n         }\r\n          #ula li div{\r\n             width: 100%;\r\n             height: 80px;\r\n             position: absolute;\r\n             left: 0;\r\n             top:0px;\r\n             transition: 0.5s;\r\n             transform: translateY(-75px);\r\n          }\r\n          #ula li div p{\r\n          \twidth: 100%;\r\n          \theight: 40px;\r\n          \ttext-align: center;\r\n          \tline-height: 40px;\r\n          }\r\n\t&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n&lt;ul id=\"ula\"&gt;\r\n\t&lt;li&gt;\r\n\t\t&lt;div&gt;\r\n\t\t\t&lt;p&gt;111111111111&lt;\/p&gt;\r\n\t\t\t&lt;p&gt;aaaaaaaaaaaa&lt;\/p&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/li&gt;\r\n\t&lt;li&gt;\r\n\t\t&lt;div&gt;\r\n\t\t\t&lt;p&gt;222222222222&lt;\/p&gt;\r\n\t\t\t&lt;p&gt;bbbbbbbbbbbb&lt;\/p&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/li&gt;\r\n\t&lt;li&gt;\r\n\t\t&lt;div&gt;\r\n\t\t\t&lt;p&gt;333333333333&lt;\/p&gt;\r\n\t\t\t&lt;p&gt;cccccccccccc&lt;\/p&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/li&gt;\r\n\t&lt;li&gt;\r\n\t\t&lt;div&gt;\r\n\t\t\t&lt;p&gt;444444444444&lt;\/p&gt;\r\n\t\t\t&lt;p&gt;dddddddddddd&lt;\/p&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/li&gt;\r\n\t&lt;li&gt;\r\n\t\t&lt;div&gt;\r\n\t\t\t&lt;p&gt;555555555555&lt;\/p&gt;\r\n\t\t\t&lt;p&gt;eeeeeeeeeeee&lt;\/p&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/li&gt;\r\n\t&lt;li&gt;\r\n\t\t&lt;div&gt;\r\n\t\t\t&lt;p&gt;666666666666&lt;\/p&gt;\r\n\t\t\t&lt;p&gt;ffffffffffff&lt;\/p&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/li&gt;\r\n\t&lt;li&gt;\r\n\t\t&lt;div&gt;\r\n\t\t\t&lt;p&gt;777777777777&lt;\/p&gt;\r\n\t\t\t&lt;p&gt;gggggggggggg&lt;\/p&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/li&gt;\r\n\t&lt;li&gt;\r\n\t\t&lt;div&gt;\r\n\t\t\t&lt;p&gt;888888888888&lt;\/p&gt;\r\n\t\t\t&lt;p&gt;hhhhhhhhhhhh&lt;\/p&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/li&gt;\r\n\t&lt;li&gt;\r\n\t\t&lt;div&gt;\r\n\t\t\t&lt;p&gt;9999999999999&lt;\/p&gt;\r\n\t\t\t&lt;p&gt;iiiiiiiiiiiii&lt;\/p&gt;\r\n\t\t&lt;\/div&gt;\r\n\t&lt;\/li&gt;\r\n&lt;\/ul&gt;\r\n\r\n\t&lt;script type=\"text\/javascript\"&gt;\r\n\t\tvar ula = document.getElementById('ula');\r\n\t\tvar n = 0;\r\n\t\tvar timer = null;\r\n\t\tvar onOff = true;\r\n\t\tshow(ula);\r\n\t\tfunction show(obj){\r\n\t\t\tvar divs = obj.getElementsByTagName('div');\r\n\t\t\tsetInterval(function(){\r\n\t\t\t\tchange();\r\n\t\t\t},5000);\r\n\t\t\tfunction change(){\r\n\t\t\t\ttimer = setInterval(function(){\r\n\t\t\t\t\t\r\n\t\t\t\t\tif(n==divs.length){\r\n\t\t\t\t\t\tclearInterval(timer);\r\n\t\t\t\t\t\tn=0;\r\n\t\t\t\t\t\tonOff = !onOff;\r\n\t\t\t\t\t}else{\r\n\t\t\t\t\t\tdivs[n].style.transform = 'translateY('+(onOff?-20:-70)+'px)';\r\n\t\t\t\t\t\tn++;\r\n\t\t\t\t\t}\r\n\t\t\t\t},200);\r\n\t\t\t};\r\n\t\t}\r\n\t&lt;\/script&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p class=\"post-copyright\">\u6b22\u8fce\u5206\u4eab\u672c\u6587\uff0c\u8f6c\u8f7d\u8bf7\u4fdd\u7559\u51fa\u5904\uff1a<a href=\"http:\/\/www.qdabc.cn\">\u524d\u7aefABC<\/a> &raquo; <a href=\"http:\/\/www.qdabc.cn\/?p=2320\">\u767e\u53f6\u7a97\u52a0\u8f7d\u6548\u679c<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>&lt;!DOCTYPE html&gt; &lt;html lang=&#8221;en&#8221;&gt; &lt;head&gt; &lt;meta charset=&#8221;UTF-8&#8243;&gt; &lt;title&gt; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[9,328,329],"_links":{"self":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts\/2320"}],"collection":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2320"}],"version-history":[{"count":1,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts\/2320\/revisions"}],"predecessor-version":[{"id":2321,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=\/wp\/v2\/posts\/2320\/revisions\/2321"}],"wp:attachment":[{"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2320"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2320"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.qdabc.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2320"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}