Created
April 14, 2016 20:09
-
-
Save quickgrid/ab0cacf70bd90664fa650142bb57e55f to your computer and use it in GitHub Desktop.
Simple chrome clock app using konva JS framework html file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="js/konva.min.js"></script> | |
<meta charset="utf-8"> | |
<meta name="author" content="Asif Ahmed"> | |
<meta name="description" content="http://quickgrid.blogspot.com"> | |
<title>Simple Chrome Clock App</title> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; | |
overflow: hidden; | |
background-color: #F0F0F0; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="container"></div> | |
<script src="js/jquery.min.js"></script> | |
<script src="js/app.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment