js-easy-clock
Version:
A jquery plugin for an analog clock
24 lines (18 loc) • 513 B
HTML
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="dist/bundle.js"></script>
</head>
<body>
<div id="myClock">
</div>
<script>
let clock = new ClockWidget.ClockApp(document.getElementById('myClock'), { width: 500, height: 500, radius: 200 });
</script>
</body>
</html>