The front-end framework for developing projects on the web in Windows Metro Style
Whats new in 3.0
- compatible with AngularJS
- full code refactoring & new components
- declarative approach to the definition of components
- framework itself monitors components, pressure via ajax
- create cool page without knowledge of javascript
- support classic approach to definition of components
Simple steps to create cool pages
1.Create page with HTML5 DOCTYPE
<!DOCTYPE html>
2.Include required styles and libs
<!DOCTYPE html>
<html>
<head>
<link href="metro.css" rel="stylesheet">
<script src="jquery.js"></script>
<script src="metro.js"></script>
</head>
</html>
3.Use declarative style to create components
<!DOCTYPE html>
<html>
<head>
<link href="metro.css" rel="stylesheet">
<script src="jquery.js"></script>
<script src="metro.js"></script>
</head>
<body>
<h1>Hello world!</h1>
<div class="countdown" data-role="countdown" data-days="2"></div>
</body>
</html>