41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title>perfect-scrollbar example</title>
|
|
<link href="../out/css/perfect-scrollbar.css" rel="stylesheet">
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
|
<script src="../out/js/perfect-scrollbar.jquery.js"></script>
|
|
<style>
|
|
.contentHolder { position:relative; margin:0px auto; padding:0px; width: 600px; height: 400px; overflow: hidden; }
|
|
.contentHolder .content { background-image: url('./azusa.jpg'); width: 1280px; height: 720px; }
|
|
.spacer { text-align:center }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 style="text-align:center">Default; wheelSpeed:1</h1>
|
|
<div id="Default" class="contentHolder">
|
|
<div class="content">
|
|
</div>
|
|
</div>
|
|
<h1 style="text-align:center">Fast: wheelSpeed:10</h1>
|
|
<div id="FastWheelSpeed" class="contentHolder">
|
|
<div class="content">
|
|
</div>
|
|
</div>
|
|
<h1 style="text-align:center">Slow: wheelSpeed:0.1</h1>
|
|
<div id="SlowWheelSpeed" class="contentHolder">
|
|
<div class="content">
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$(document).ready(function ($) {
|
|
$('#Default').perfectScrollbar();
|
|
$('#FastWheelSpeed').perfectScrollbar({wheelSpeed: 10});
|
|
$('#SlowWheelSpeed').perfectScrollbar({wheelSpeed: 0.1});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|