mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
refactor(): reorganize source files
This commit is contained in:
24
test/css/loading.html
Normal file
24
test/css/loading.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Loading</title>
|
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
|
||||
<link href="../../dist/css/ionic.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="loading" class="loading">
|
||||
<h4>Loading</h4>
|
||||
</div>
|
||||
|
||||
<button id="show" class="button">Show</button>
|
||||
<script src="../../dist/js/ionic.js"></script>
|
||||
<script>
|
||||
var loading = document.getElementById('loading');
|
||||
var l = new ionic.views.Loading({el: loading});
|
||||
var sb = document.getElementById('show');
|
||||
sb.addEventListener('click', function(e) {
|
||||
l.show();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user