16 lines
342 B
HTML
16 lines
342 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript" src="fleur2vie.js"></script>
|
|
</head>
|
|
<body>
|
|
<canvas id="f2v_calvas" width="1000px" height="1000px"></canvas>
|
|
<script type="text/javascript">
|
|
window.onload = function() {
|
|
setTimeout(function(){
|
|
main();
|
|
}, 1000);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|