javascriptを下にスクロールします.

1659 ワード

Google Readerリーダーでは、下に向かって後ろに引くと、自動的に下の部分がロードされます.
下のコードは主に下にスクロールします.
 
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>    </title>
    <style type="text/css" media="screen">
        ul {width:200px; height:100px; overflow-y:auto;}
    </style>
</head>
<body>
    <ul id="x">
        <li>hello</li>
        <li>hello</li>
        <li>hello</li>
        <li>hello</li>
        <li>hello</li>
        <li>hello</li>
        <li>hello</li>
        <li>hello</li>
    </ul>
    <script type="text/javascript" charset="utf-8">
        var i = 0;
        var $ = function (name) {return document.getElementById(name) };
        var a = $('x');
        a.onscroll = function () {
            if ( this.scrollHeight - this.clientHeight - this.scrollTop < 10) {
                console.log (i);
                var li = document.createElement('li');
                li.innerHTML = "hello " + i++;
                this.appendChild (li);
                if (i >= 40) {
                    this.onscroll = null
                       return;
                }

            }
        }
    </script>
</body>
</html>