UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced jQuery, Angular, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

24 lines (23 loc) 1.19 kB
<!DOCTYPE html> <html lang="en"> <head> <title id='Description'>To switch the widget to a right-to-left representation, just enable a single property - "rtl". When this property is on, the horizontal progressbar is mirrored.</title> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" /> <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/jqxprogressbar.js"></script> <script type="text/javascript"> $(document).ready(function () { $('#horizontalProgressBar').jqxProgressBar({rtl: true, value: 50, width: 300, height: 30 }); }); </script> </head> <body class='default'> <div id='jqxWidget'> <div id='horizontalProgressBar'></div> </div> </body> </html>