jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
60 lines (57 loc) • 3.34 kB
HTML
<html lang="en">
<head>
<meta name="keywords" content="jQuery ScrollView, ScrollView Widget, ScrollView, Mobile ScrollView" />
<meta name="description" content="jqxScrollView represents a widget which can be used for viewing content which is wider than the visible area outlined by the device's screen. Specific item can be chosen using drag movements or clicking/tapping on the buttons at the bottom of the jqxScrollView." />
<title id="Description">jqxScrollView represents a widget which can be used for viewing content which is wider than the visible area outlined by the device's screen. Specific item can be chosen using drag movements or clicking/tapping on the buttons at the bottom of the jqxScrollView.</title>
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css"/>
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.arctic.css" />
<script type="text/javascript" src="../../../scripts/jquery-1.12.4.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/jqxscrollview.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript">
$(function () {
$('#photoGallery').jqxScrollView({ width: 600, height: 450, buttonsOffset: [0, 0]});
$('#StartBtn').jqxButton({ theme: theme });
$('#StopBtn').jqxButton({ theme: theme });
$('#StartBtn').click(function () {
$('#photoGallery').jqxScrollView({ slideShow: true });
});
$('#StopBtn').click(function () {
$('#photoGallery').jqxScrollView({ slideShow: false });
});
});
</script>
<style type="text/css">
.photo
{
width: 600px;
height: 450px;
background-color: #000;
background-position: center;
background-repeat: no-repeat;
}
</style>
</head>
<body class="default">
<div id="photoGallery">
<div><div class="photo" style="background-image: url(../../../images/imageNature1.jpg)"></div></div>
<div><div class="photo" style="background-image: url(../../../images/imageNature2.jpg)"></div></div>
<div><div class="photo" style="background-image: url(../../../images/imageNature3.jpg)"></div></div>
<div><div class="photo" style="background-image: url(../../../images/imageNature4.jpg)"></div></div>
<div><div class="photo" style="background-image: url(../../../images/imageNature5.jpg)"></div></div>
</div>
<div style='margin-top: 20px;'>
<br />
<div>
<input type="button" value="Start Slideshow" id="StartBtn" />
<input type="button" value="Stop Slideshow" id="StopBtn" />
</div>
</div>
<div style="position: absolute; bottom: 5px; right: 5px;">
<a href="https://www.jqwidgets.com/" alt="https://www.jqwidgets.com/"><img alt="https://www.jqwidgets.com/" title="https://www.jqwidgets.com/" src="https://www.jqwidgets.com/wp-content/design/i/logo-jqwidgets.png"/></a>
</div>
</body>
</html>