Advertisement
ManZzup

pull to refresh

Dec 21st, 2014
2,571
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Pull-to-refresh List</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <style>
  7.     .list li{
  8.         list-style-type:none;  
  9.         line-height:50px;
  10.         height:50px;
  11.         font-size:1.5em;
  12.         border-bottom:1px solid #6BA5E7;
  13.     }
  14. </style>
  15. </head>
  16. <body>
  17. <h1>new Slaps</h1>
  18. <div class="list">
  19.     <div id="touchloader" style="text-align: center;display: none;">
  20.         Loading.....
  21.     </div>
  22.     <ul id="touchlist" style="position: relative;top:0px;">
  23.                 <li>manzzup</li>
  24.                 <li>test</li>
  25.                 <li>manujith</li>
  26.                 <li>other</li>
  27.                 <li>this</li>
  28.         </ul>
  29. </div>
  30. <script>
  31.       // our code goes here
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement