canvas绘制圆角矩形示例
2024-01-03 09:01:48
canvas示例教程100+专栏,提供canvas的基础知识,高级动画,相关应用扩展等信息。canvas作为html的一部分,是图像图标地图可视化的一个重要的基础,学好了canvas,在其他的一些应用上将会起到非常重要的帮助。
如何使用canvas绘制圆角矩形呢?方法其实很简单,先画一个圆弧,然后跟随着画直线,四个相连,最终成为一个圆角矩形。这里面较难的是统筹圆弧的位置和直线的位置,有关圆弧请参考这篇文章。 下面是大剑师的一个示例,供参考:
示例效果图
示例源代码(共107行)
/*
* @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
* @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
* @Email: 2909222303@qq.com
* @weixin: gis-dajianshi
* @First published in CSDN
* @First published time: 2024-01-03
*/
<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>
</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: {
setCanvas() {
this.canvas = document.getElementById('dajianshi');
if (!this.canvas.getContext) return;
this.ctx = this.canvas.getContext("2d");
},
draw() {
this.drawRoundRect(50, 150, 100, 200, 30, 'red', 'green', []);
this.drawRoundRect(350, 75, 300, 200, 10, 'yellow', 'blue', []);
this.drawRoundRect(700, 200, 100, 100, 20, 'purple', 'pink', []);
},
/**
* 绘制圆角矩形
* @param {* 必填} x x坐标
* @param {* 必填} y y坐标
* @param {* 必填} width 宽度
* @param {* 必填} height 高度
* @param {* 必填} radius 圆角半径
* @param {* 非必填 默认值:'#456'} strokeColor 边框颜色
* @param {* 非必填 无默认值} fillColor 填充颜色
* @param {* 非必填 默认值:[]实线} lineDash 边框样式
*/
drawRoundRect(x, y, width, height, radius, strokeColor, fillColor, lineDash) {
strokeColor = strokeColor || '#333';
lineDash = lineDash || [];
this.ctx.beginPath();
this.ctx.setLineDash(lineDash);
this.ctx.arc(x + radius, y + radius, radius, Math.PI, Math.PI * 3 / 2);
this.ctx.lineTo(width - radius + x, y);
this.ctx.arc(width - radius + x, radius + y, radius, Math.PI * 3 / 2, Math.PI * 2);
this.ctx.lineTo(width + x, height + y - radius);
this.ctx.arc(width - radius + x, height - radius + y, radius, 0, Math.PI / 2);
this.ctx.lineTo(radius + x, height + y);
this.ctx.arc(radius + x, height - radius + y, radius, Math.PI / 2, Math.PI);
this.ctx.lineTo(x, y + radius);
this.ctx.strokeStyle = strokeColor;
this.ctx.stroke();
if (fillColor) {
this.ctx.fillStyle = fillColor;
this.ctx.fill();
}
this.ctx.closePath();
},
}
}
</script>
<style scoped>
.djs_container {
width: 1000px;
height: 680px;
margin: 50px auto;
border: 1px solid #ff4170;
position: relative;
}
.top {
margin: 0 auto 0px;
padding: 10px 0;
background: #ff4170;
color: #fff;
}
.dajianshi {
margin: 5px auto 0;
border: 1px solid #ccc;
width: 980px;
height: 490px;
background-color: #f9f9f9;
}
</style>
canvas基本属性
canvas基础方法
文章来源:https://blog.csdn.net/cuclife/article/details/135343614
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!