Der Code von keleyi.htm lautet wie folgt: Kopieren Sie den CodeDer Code lautet wie folgt: html Leinwand drehen< /script><br> </head><br><body><br><canvas id="jb51"></canvas><br></body><br></ html><br> </div> <p>Der Code von jb51.js lautet wie folgt: <br><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" onclick="copycode(getid('phpcode53'));"><u>Kopieren Sie den Code</u></span></div>Der Code lautet wie folgt:</div> <div class="msgborder" id="phpcode53"> <br>/*<br>* Funktion: Leinwandrotation<br>*/<br>(function(){<br> var canvas=null,<br> context=null,<br> angle =0;<br> function resetCanvas(){<br> canvas=document.getElementById("jb51");<br> canvas.width=window.innerWidth;<br> canvas.height=window.innerHeight;<br> context=canvas.getContext(" 2d");<br> }<br> function animate(){<br> context.save();<br> try{<br> //Canvas löschen<br> context.clearRect (0, 0, Canvas. width, Canvas.height);<br> //Legen Sie den Ursprung fest<br> context.translate(canvas.width * 0.5, Canvas.height * 0.5);<br> //Drehwinkel<br> context.rotate(angle) ;<br> //Füllfarbe festlegen<br> context.fillStyle = "#FF0000";<br> //Rechteck zeichnen<br> context.fillRect(-30, -30, 60 , 60);<br> angle = 0.05 * Math.PI;<br> }<br> schließlich{<br> context.restore();<br> }<br> }<br> $(window).bind ("resize",resetCanvas). bind("reorient",resetCanvas);<br> $(document).ready(function(){<br> window.scrollTo(0,1);<br> resetCanvas(); <br> setInterval(animate,40 );<br> });<br>})();<br> </div>