Das Beispiel in diesem Artikel beschreibt die Methode zum Erzeugen von Blütenblatteffekten durch JS-Zeichnung. Teilen Sie es als Referenz mit allen. Die Details lauten wie folgt:
JS-Zeichnung wird hier verwendet, um den grafischen Zeicheneffekt durch reines JS zu erzeugen. Wenn Sie die Kenntnisse des JavaScript-Grafikzeichnens erlernen möchten, sollten Sie sich meiner Meinung nach dieses kleine Programm ansehen ganz gut.
Der Betriebseffekt ist wie folgt:
Der spezifische Code lautet wie folgt:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <html >
<head>
<meta http-equiv= "Content-Type" content= "text/html; charset=gb2312" />
<title>Js绘制生成花瓣效果</title>
</head>
<body>
<script Language= "javascript" >
function a(x,y,color)
{document.write( "<img border='0' style='position: absolute; left: " +(x+300)+ "; top: " +(y+200)+ ";background-color: " +color+ "' src='px.gif' width=1 height=1>" )}
</script>
<script>
for (t=1;t<=360;t++){
lo=200 * Math.sin(2 * (Math.PI / 180) * t);
x = lo * Math.cos((Math.PI / 180) * t);
y = lo * Math.sin((Math.PI / 180) * t);
a(x,y, "#000000" );
lo=200 * Math.cos(2 * (Math.PI / 180) * t);
x = lo * Math.cos((Math.PI / 180) * t);
y = lo * Math.sin((Math.PI / 180) * t);
a(x,y, "#ff0000" );
}
</script>
</body>
</html>
|
Nach dem Login kopieren
Ich hoffe, dass dieser Artikel für das JavaScript-Programmierdesign aller hilfreich sein wird.