28 lines
851 B
HTML
28 lines
851 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<title>Writings by Shoofle</title>
|
|
<script src="/static/jquery.min.js" type="text/javascript"></script>
|
|
<link href="/static/bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css">
|
|
<link href="/static/bootstrap/css/bootstrap-responsive.css" rel="stylesheet" type="text/css">
|
|
<link href="/static/shoofle.css" rel="stylesheet" type="text/css">
|
|
|
|
</head>
|
|
<body>
|
|
<article>
|
|
<svg id="weeeeedblog" width="400px" viewBox="-100 -100 200 200" xmlns="http://www.w3.org/2000/svg" height="400px">
|
|
<g id="weeedblog">
|
|
<circle cx=0 cy=70 r=10 />
|
|
</g>
|
|
</svg>
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
var angle = 0;
|
|
setInterval(function() { $('#weeedblog').attr('transform', 'rotate(' + angle + ')'); angle += 3;}, 40);
|
|
});
|
|
</script>
|
|
</article>
|
|
</body>
|
|
</html> |