Files
zpc-bulletin-board/ZpcBulletinBoard/wwwroot/lib/spin/example/modernizr.html
David Štaleker 28d1630749 prvi
2024-02-23 12:56:54 +01:00

32 lines
546 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>spin.js</title>
<script src="modernizr.js"></script>
<style type="text/css">
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 16px;
}
#preview {
background: #aaa;
color: black;
width: 220px;
height: 220px;
margin: 0 20px;
float: left;
border-radius: 10px;
}
</style>
</head>
<body>
<section id="preview"></section>
<script src="../spin.js"></script>
<script>
new Spinner().spin(document.getElementById('preview'));
</script>
</body>
</html>