2013-03-14 10:45:52 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<title>perfect-scrollbar example - use wheelPropagation to control propagation of scrolling at extremities</title>
|
2013-06-14 20:39:53 +08:00
|
|
|
<link href="../src/perfect-scrollbar.css" rel="stylesheet">
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
|
|
|
|
<script src="../src/jquery.mousewheel.js"></script>
|
|
|
|
<script src="../src/perfect-scrollbar.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>
|
2013-03-14 10:45:52 +08:00
|
|
|
<script>
|
|
|
|
jQuery(document).ready(function ($) {
|
|
|
|
"use strict";
|
|
|
|
$('#Default').perfectScrollbar();
|
|
|
|
$('#NoWheelPropagation').perfectScrollbar({wheelPropagation:true});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1 style="text-align:center">Default; wheelPropagation:false</h1>
|
|
|
|
<div id="Default" class="contentHolder">
|
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<h1 style="text-align:center">wheelPropagation:true</h1>
|
|
|
|
<div id="NoWheelPropagation" class="contentHolder">
|
|
|
|
<div class="content">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="spacer">
|
|
|
|
Note<br>that<br>there<br>is<br>plenty<br>of<br>text<br>after<br>the<br>image<br>to<br>ensure<br>that<br>it<br>is<br>possible<br>to<br>down<br>
|
|
|
|
after<br>the<br>bottom<br>of<br>the<br>image<br>has<br>been<br>reached<br>to<br>enable<br>the<br>wheel<br>propagation<br>to<br>be<br>tested<br>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|