mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/region-edoc.git
synced 2026-01-24 17:25:38 +03:00
64 lines
2.1 KiB
HTML
64 lines
2.1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery Nice Number Plugin Demo</title>
|
|
<link href="https://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css">
|
|
<link href="dist/jquery.nice-number.css" rel="stylesheet" type="text/css">
|
|
<style>
|
|
.container { margin:150px auto; max-width:400px;}
|
|
h1 { margin-bottom:30px; color:#fff; }
|
|
body { background-color:#222; font-family:'Roboto';}
|
|
button { background-color:#34BC9D; color:#fff; border:3px solid #34BC9D}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="jquery-script-menu">
|
|
<div class="jquery-script-center">
|
|
<ul>
|
|
<li><a href="https://www.jqueryscript.net/form/Number-Input-Spinner-jQuery-Nice-Number.html">Download This Plugin</a></li>
|
|
<li><a href="https://www.jqueryscript.net/">Back To jQueryScript.Net</a></li>
|
|
</ul>
|
|
<div class="jquery-script-ads"><script type="text/javascript"><!--
|
|
google_ad_client = "ca-pub-2783044520727903";
|
|
/* jQuery_demo */
|
|
google_ad_slot = "2780937993";
|
|
google_ad_width = 728;
|
|
google_ad_height = 90;
|
|
//-->
|
|
</script>
|
|
<script type="text/javascript"
|
|
src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
|
|
</script></div>
|
|
<div class="jquery-script-clear"></div>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<h1>jQuery Nice Number Plugin Demo</h1>
|
|
<input type="number" value="1000">
|
|
</div>
|
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
|
<script src="dist/jquery.nice-number.js"></script>
|
|
<script>
|
|
$('input[type="number"]').niceNumber();
|
|
</script>
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-36251023-1']);
|
|
_gaq.push(['_setDomainName', 'jqueryscript.net']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|