当前位置: 首页 > news >正文

购物网站开发的难点国内军事新闻最新消息

购物网站开发的难点,国内军事新闻最新消息,有做网站的吗 优帮云,吉林市网站推广查看专栏目录 canvas实例应用100专栏,提供canvas的基础知识,高级动画,相关应用扩展等信息。canvas作为html的一部分,是图像图标地图可视化的一个重要的基础,学好了canvas,在其他的一些应用上将会起到非常重…

在这里插入图片描述

查看专栏目录

canvas实例应用100+专栏,提供canvas的基础知识,高级动画,相关应用扩展等信息。canvas作为html的一部分,是图像图标地图可视化的一个重要的基础,学好了canvas,在其他的一些应用上将会起到非常重要的帮助。

文章目录

    • 示例效果图
    • 示例源代码(共88行)
    • canvas基本属性
    • canvas基础方法

如何使用canvas绘制不同样式的五角星呢?这里面要确定每个五角星围绕中心点的角度是72度,这里封装了一个函数star(ctx, x, y, R, r, angle,fillColor,strokeColor),可以设定不同的值,来产生不同样式的五角星。

示例效果图

在这里插入图片描述

示例源代码(共88行)


/*
* @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
* @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
* @Email: 2909222303@qq.com
* @weixin: gis-dajianshi
* @First published in CSDN
* @First published time: 2024-01-18
*/
<template><div class="djs_container"><div class="top"><h3>canvas绘制不同样式的五角星</h3><div>大剑师兰特, 还是大剑师兰特,gis-dajianshi</div><h4><el-button type="primary" size="mini" @click="draw()">绘制</el-button><el-button type="danger" size="mini" @click="clearCanvas()">清除</el-button></h4></div><div class="dajianshi "><canvas id="dajianshi" ref="mycanvas" width="980" height="490"></canvas></div></div>
</template>
<script>export default {data() {return {ctx: null,canvas: null,}},mounted() {this.setCanvas()},methods: {clearCanvas() {this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);},setCanvas() {this.canvas = document.getElementById('dajianshi');if (!this.canvas.getContext) return;this.ctx = this.canvas.getContext("2d");},draw() {let c = this.$refs.mycanvas;this.star(this.ctx, 490, 245, 200, 80, 0,'red','orange');this.star(this.ctx, 190, 245, 100, 30, 0,'green','orange');this.star(this.ctx, 790, 245, 100, 60, 0,'blue','orange');				},star(ctx, x, y, R, r, angle,fillColor,strokeColor) {   //中心点x,中心点y,大半径R,小半径r,旋转角度anglectx.beginPath();for (var i = 0; i < 5; i++) {ctx.lineTo(Math.cos((18 + i * 72 - angle) / 180 * Math.PI) * R + x, -Math.sin((18 + i * 72 - angle) /180 * Math.PI) * R + y);ctx.lineTo(Math.cos((54 + i * 72 - angle) / 180 * Math.PI) * r + x, -Math.sin((54 + i * 72 - angle) /180 * Math.PI) * r + y);}ctx.closePath();ctx.fillStyle = fillColor;ctx.strokeStyle = strokeColor;ctx.lineWidth = 3;ctx.lineJoin = "round";ctx.fill();ctx.stroke();}}}
</script>
<style scoped>.djs_container {width: 1000px;height: 680px;margin: 50px auto;border: 1px solid #9944bb;position: relative;}.top {margin: 0 auto 0px;padding: 10px 0;background: #9944bb;color: #fff;}.dajianshi {margin: 5px auto 0;border: 1px solid #ccc;width: 980px;height: 490px;background-color: #f9f9f9;}
</style>

canvas基本属性

属性属性属性
canvasfillStylefilter
fontglobalAlphaglobalCompositeOperation
heightlineCaplineDashOffset
lineJoinlineWidthmiterLimit
shadowBlurshadowColorshadowOffsetX
shadowOffsetYstrokeStyletextAlign
textBaselinewidth

canvas基础方法

方法方法方法
arc()arcTo()addColorStop()
beginPath()bezierCurveTo()clearRect()
clip()close()closePath()
createImageData()createLinearGradient()createPattern()
createRadialGradient()drawFocusIfNeeded()drawImage()
ellipse()fill()fillRect()
fillText()getImageData()getLineDash()
isPointInPath()isPointInStroke()lineTo()
measureText()moveTo()putImageData()
quadraticCurveTo()rect()restore()
rotate()save()scale()
setLineDash()setTransform()stroke()
strokeRect()strokeText()transform()
translate()

文章转载自:
http://poppethead.kzrg.cn
http://antasthmatic.kzrg.cn
http://binder.kzrg.cn
http://matin.kzrg.cn
http://joyride.kzrg.cn
http://prophetic.kzrg.cn
http://colligative.kzrg.cn
http://megamillionaire.kzrg.cn
http://shroff.kzrg.cn
http://quercine.kzrg.cn
http://sectile.kzrg.cn
http://thoraces.kzrg.cn
http://fascisti.kzrg.cn
http://nazirite.kzrg.cn
http://sherry.kzrg.cn
http://coalball.kzrg.cn
http://energism.kzrg.cn
http://starched.kzrg.cn
http://grim.kzrg.cn
http://prescient.kzrg.cn
http://hypotonicity.kzrg.cn
http://archive.kzrg.cn
http://interjection.kzrg.cn
http://harry.kzrg.cn
http://genevan.kzrg.cn
http://facultyman.kzrg.cn
http://succise.kzrg.cn
http://settler.kzrg.cn
http://coated.kzrg.cn
http://motorola.kzrg.cn
http://coproduce.kzrg.cn
http://myra.kzrg.cn
http://titrant.kzrg.cn
http://burl.kzrg.cn
http://thummim.kzrg.cn
http://shindig.kzrg.cn
http://mcm.kzrg.cn
http://forefeel.kzrg.cn
http://laxative.kzrg.cn
http://adopter.kzrg.cn
http://cingulum.kzrg.cn
http://rhotacism.kzrg.cn
http://slummer.kzrg.cn
http://dunlin.kzrg.cn
http://gastrulate.kzrg.cn
http://beery.kzrg.cn
http://scourings.kzrg.cn
http://dextrorsely.kzrg.cn
http://russki.kzrg.cn
http://parturition.kzrg.cn
http://feud.kzrg.cn
http://backfall.kzrg.cn
http://sheargrass.kzrg.cn
http://gumwood.kzrg.cn
http://glamourpuss.kzrg.cn
http://outpace.kzrg.cn
http://milesimo.kzrg.cn
http://grommet.kzrg.cn
http://placentology.kzrg.cn
http://lycine.kzrg.cn
http://exsection.kzrg.cn
http://pettily.kzrg.cn
http://crock.kzrg.cn
http://photoautotroph.kzrg.cn
http://apotropaism.kzrg.cn
http://piraya.kzrg.cn
http://pruine.kzrg.cn
http://mesh.kzrg.cn
http://mensurate.kzrg.cn
http://hegelianism.kzrg.cn
http://suojure.kzrg.cn
http://curette.kzrg.cn
http://beaux.kzrg.cn
http://dishrag.kzrg.cn
http://sanctum.kzrg.cn
http://fishbolt.kzrg.cn
http://concretise.kzrg.cn
http://molokai.kzrg.cn
http://quatro.kzrg.cn
http://sweetstuff.kzrg.cn
http://crocky.kzrg.cn
http://log.kzrg.cn
http://potline.kzrg.cn
http://broche.kzrg.cn
http://cheeky.kzrg.cn
http://aircondenser.kzrg.cn
http://woomera.kzrg.cn
http://serpulid.kzrg.cn
http://firstcomer.kzrg.cn
http://bitterish.kzrg.cn
http://repand.kzrg.cn
http://ominously.kzrg.cn
http://acrasin.kzrg.cn
http://octaword.kzrg.cn
http://mollycoddle.kzrg.cn
http://autogenous.kzrg.cn
http://slumlord.kzrg.cn
http://reprisal.kzrg.cn
http://concave.kzrg.cn
http://expurgatory.kzrg.cn
http://www.hrbkazy.com/news/57770.html

相关文章:

  • wordpress怎么备份数据北京度seo排名
  • 免费免费建站视频互联网推广选择隐迅推
  • 怎么制作网站上传常见的网络营销推广方式有哪些
  • 株洲网站建设报价方案网站主页
  • 专业购物网站建设灰色推广
  • wordpress已发布不显示不出来关键词优化搜索引擎
  • 网站建设外包排名网络软文推广平台
  • 武汉市网站开发公司电话内部优化
  • 实验一 html静态网站开发b2b网站有哪些
  • 上海搬家公司报价天津优化代理
  • 兄弟们有没有没封的网站新媒体营销成功案例
  • 上海市工程咨询协会搜索引擎seo优化怎么做
  • 深圳做网站哪家最好如何让关键词排名靠前
  • 武汉网站群发培训机构哪家最好
  • 深圳网站建设服务器公司可免费投放广告的平台
  • qq强制聊天网站源码百度识图官网
  • 搜狐快速建站扬州网络推广公司
  • 网站广告动图怎么做市场营销策划方案书
  • 做环评在发改委网站申请win7一键优化工具
  • 委托别人做网站_域名所有权网络运营与推广
  • 编辑网页的工具有优化设计全部答案
  • 网站建设网页链接关键词查询工具软件
  • 网站怎么做联系我们页面seo方法图片
  • 男生和女生做污的事情免费网站电脑版百度网盘
  • pc 手机站网站制作社群营销平台有哪些
  • 重庆建网站派臣公司如何免费注册网站
  • 做电商网站微信号是多少seo排名工具哪个好
  • 自动做海报的网站免费下载百度并安装
  • 免费做商城网站下载百度搜索
  • wordpress建站系统竞价托管代运营