Difference between revisions of "Team:Cologne-Duesseldorf/Test3"

Line 1: Line 1:
 
<html>
 
<html>
<head>
 
<style>
 
#particlecanvas{
 
  background: red;
 
}
 
 
body{
 
  margin:0;
 
  width: 100%;
 
  height: 100%;
 
}
 
</style>
 
</head>
 
 
<body>
 
<body>
  
<canvas id="particlecanvas">This browser doesn't support canvas</canvas>
+
<canvas id="myCanvas" width="200" height="100"
<script src="https://2017.igem.org/Template:Cologne-Duesseldorf/particles?action=raw&ctype=text/javascript">
+
style="border:1px solid #c3c3c3;">
 +
Your browser does not support the canvas element.
 +
</canvas>
 +
 
 +
<script>
 +
var canvas = document.getElementById("myCanvas");
 +
var ctx = canvas.getContext("2d");
 +
ctx.fillStyle = "#FF0000";
 +
ctx.fillRect(0,0,150,75);
 +
</script>
  
  
 
</body>
 
</body>
 
</html>
 
</html>

Revision as of 01:41, 1 November 2017

Your browser does not support the canvas element.