| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
- <title>perfect-scrollbar example</title>
- <link href="../dist/css/perfect-scrollbar.css" rel="stylesheet">
- <script src="../dist/js/perfect-scrollbar.js"></script>
- <style>
- .contentHolder { position:relative; margin:0px auto; padding:0px; width: 600px; height: 400px; overflow: auto; }
- .contentHolder .content { background-image: url('./azusa.jpg'); width: 1280px; height: 720px; }
- .spacer { text-align:center }
- </style>
- </head>
- <body>
- <div id="Default" class="contentHolder">
- <div class="content">
- </div>
- </div>
- <p style='text-align: center'>
- Width <input type='text' id='width' value='600'>
- Height <input type='text' id='height' value='400'>
- <button onclick='updateSize()'>Change!</button>
- </p>
- <script>
- var $ = document.querySelector.bind(document);
- window.onload = function () {
- Ps.initialize($('#Default'));
- };
- var updateSize = function () {
- var width = parseInt($('#width').value, 10);
- var height = parseInt($('#height').value, 10);
- var container = $('#Default');
- container.style.width = width + 'px';
- container.style.height = height + 'px';
- Ps.update(document.querySelector('#Default'));
- };
- </script>
- </body>
- </html>
|