HTML5 Canvas 绘制澳大利亚国旗

2023-12-31 22:50

本文主要是介绍HTML5 Canvas 绘制澳大利亚国旗,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

代码:

<!DOCTYPE html>
<html lang="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<head><title>澳大利亚国旗</title></head><body onload="draw()"><canvas id="myCanvus" width="480px" height="240px" style="border:1px dashed black;">出现文字表示你的浏览器不支持HTML5</canvas></body>
</html>
<script type="text/javascript">
<!--function draw(){var canvas=document.getElementById("myCanvus");var canvasWidth=240;var canvasHeight=120;var context=canvas.getContext("2d");context.fillStyle = "white";context.fillRect(0, 0, canvasWidth*2, canvasHeight*2);// 先画角上蓝色方块
        context.fillStyle = "blue";context.fillRect(0, 0, 100, 40);context.fillRect(140, 0, 100, 40);context.fillRect(0, 80, 100, 40);context.fillRect(140, 80, 100, 40);// 用旋转的白色长条去盖上蓝色方块,覆盖完出现八个三角块
        context.save();context.translate(120,60);context.rotate(getRad(26.56));context.fillStyle = "white";context.fillRect(-300, -12, 600, 24);context.restore();context.save();context.translate(120,60);context.rotate(getRad(-26.56));context.fillStyle = "white";context.fillRect(-300, -12, 600, 24);context.restore();// 四个红条
        context.save();context.translate(120,60);context.rotate(getRad(26.56));context.fillStyle = "red";context.fillRect(-300, 0, 300, 8);context.restore();context.save();context.translate(120,60);context.rotate(getRad(-26.56));context.fillStyle = "red";context.fillRect(-300, 0, 300, 8);context.restore();context.save();context.translate(120,60);context.rotate(getRad(-26.56));context.fillStyle = "red";context.fillRect(0, -8, 300, 8);context.restore();context.save();context.translate(120,60);context.rotate(getRad(26.56));context.fillStyle = "red";context.fillRect(0, -8, 300, 8);context.restore();// 用一个白条去把中间部分的多余红边去掉
        context.fillStyle = "white";context.fillRect(0, 40, 240, 40);// 画中间的红色十字
        context.fillStyle = "red";context.fillRect(0, 48, 240, 24);context.fillRect(108, 0, 24, 120);// 用蓝色方块覆盖掉多出来的部分
        context.fillStyle = "blue";context.fillRect(0, canvasHeight, canvasWidth*2, canvasHeight);context.fillRect(canvasWidth, 0, canvasWidth, canvasHeight);// 逐个画七芒星
        context.save();drawSevenStar(context,120,180,20,"white")context.restore();context.save();drawSevenStar(context,360,45,15,"white")context.restore();context.save();drawSevenStar(context,360,200,15,"white")context.restore();context.save();drawSevenStar(context,300,110,15,"white")context.restore();context.save();drawSevenStar(context,420,100,15,"white")context.restore();// 最后一颗五角星
        context.save();drawFiveStar(context,390,140,10,"white")context.restore();}function drawSevenStar(context,x,y,r,color){context.strokeStyle = color;context.fillStyle = color;context.translate(x,y);for(var i=0;i<7;i++){context.save();context.rotate(getRad(360/7*i));
context.beginPath();context.moveTo(0, -r);context.lineTo(-Math.tan(getRad(12))*r, 0);context.lineTo(Math.tan(getRad(12))*r,0);context.lineTo(0, -r);context.fill();context.stroke();context.closePath();    context.restore();}        }function drawFiveStar(context,x,y,r,color){context.translate(x-r,y-r);context.strokeStyle = color;context.fillStyle = color;context.beginPath();context.moveTo(r, 0);context.lineTo(r+Math.cos(Math.PI*3/10)*r, r+Math.sin(Math.PI*3/10)*r);context.lineTo(r-Math.cos(Math.PI*1/10)*r, r-Math.sin(Math.PI*1/10)*r);context.lineTo(r+Math.cos(Math.PI*1/10)*r, r-Math.sin(Math.PI*1/10)*r);context.lineTo(r-Math.cos(Math.PI*3/10)*r, r+Math.sin(Math.PI*3/10)*r);context.lineTo(r, 0);context.fill();context.stroke();context.closePath();        }function getRad(degree){return degree/180*Math.PI;
    }
//-->
</script>

到这里英美加澳新的国旗都全了。

这篇关于HTML5 Canvas 绘制澳大利亚国旗的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/557358

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

css中的 vertical-align与line-height作用详解

《css中的vertical-align与line-height作用详解》:本文主要介绍了CSS中的`vertical-align`和`line-height`属性,包括它们的作用、适用元素、属性值、常见使用场景、常见问题及解决方案,详细内容请阅读本文,希望能对你有所帮助... 目录vertical-ali

浅析CSS 中z - index属性的作用及在什么情况下会失效

《浅析CSS中z-index属性的作用及在什么情况下会失效》z-index属性用于控制元素的堆叠顺序,值越大,元素越显示在上层,它需要元素具有定位属性(如relative、absolute、fi... 目录1. z-index 属性的作用2. z-index 失效的情况2.1 元素没有定位属性2.2 元素处

Python实现html转png的完美方案介绍

《Python实现html转png的完美方案介绍》这篇文章主要为大家详细介绍了如何使用Python实现html转png功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 1.增强稳定性与错误处理建议使用三层异常捕获结构:try: with sync_playwright(

Vue 调用摄像头扫描条码功能实现代码

《Vue调用摄像头扫描条码功能实现代码》本文介绍了如何使用Vue.js和jsQR库来实现调用摄像头并扫描条码的功能,通过安装依赖、获取摄像头视频流、解析条码等步骤,实现了从开始扫描到停止扫描的完整流... 目录实现步骤:代码实现1. 安装依赖2. vue 页面代码功能说明注意事项以下是一个基于 Vue.js

CSS @media print 使用详解

《CSS@mediaprint使用详解》:本文主要介绍了CSS中的打印媒体查询@mediaprint包括基本语法、常见使用场景和代码示例,如隐藏非必要元素、调整字体和颜色、处理链接的URL显示、分页控制、调整边距和背景等,还提供了测试方法和关键注意事项,并分享了进阶技巧,详细内容请阅读本文,希望能对你有所帮助...

Nginx实现前端灰度发布

《Nginx实现前端灰度发布》灰度发布是一种重要的策略,它允许我们在不影响所有用户的情况下,逐步推出新功能或更新,通过灰度发布,我们可以测试新版本的稳定性和性能,下面就来介绍一下前端灰度发布的使用,感... 目录前言一、基于权重的流量分配二、基于 Cookie 的分流三、基于请求头的分流四、基于请求参数的分