jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
48 lines (39 loc) • 2.18 kB
HTML
<html>
<head>
<meta name="keywords" content="jQuery ScrollBar, jqxScrollBar, Horizontal ScrollBar, Vertical ScrollBar, Scroll, Scrolling Bar, Scroller" />
<meta name="description" content="The jqxScrollBar represents a widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value." />
<title id='Description'>
The jqxScrollBar represents a widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. TypeScript example.
</title>
<!-- 1. Load references -->
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="../../../scripts/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxscrollbar.js"></script>
<script type="text/javascript" src="typescript-scrollbar.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<!-- 2. Create initialization -->
<script>
$(document).ready(function () {
createScrollBar('#jqxScrollBar', 'HorizontalDiv', '#jqxVerticalScrollBar', 'VerticalDiv');
});
</script>
</head>
<!-- 3. Display the application -->
<body>
<div class="example-description">
The jqxScrollBar represents a widget that provides a scroll bar that has a sliding thumb whose position corresponds to a value. TypeScript example.
</div>
<div id='jqxWidget' style="font-size: 13px; font-family: Verdana; float: left;">
<div id='VerticalDiv' style='margin-top: 10px;'>Vertical</div>
<div style='margin-top: 10px;' id='jqxVerticalScrollBar'>
</div>
<div id='HorizontalDiv' style='margin-top: 10px;'>Horizontal</div>
<div style='margin-top: 10px;' id='jqxScrollBar'>
</div>
</div>
</body>
</html>