mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
17 lines
341 B
HTML
17 lines
341 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="https://jspm.io/loader.js"></script>
|
|
<script>
|
|
jspm.import('npm:spinning', function(Spinning) {
|
|
var spinner = Spinning().text('loading...').light().size(200);
|
|
setTimeout(function () {
|
|
spinner.remove();
|
|
}, 3000);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
</html> |