这篇文章主要介绍HTML5 Canvas如何实现玫瑰曲线和心形图案,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
提示:把代码复制到一个html文件中并保存,直接打开即可看到效果。
实现代码:
#apDiv1 {
position:absolute;
宽度:120像素;
高度:300像素;
z-index:1;
左:840px;
顶部:80px;
}
style>
head>
您的浏览器不支持canvas元素。 canvas>
函数draw(){ var ctx = document.getElementById(’canvas’)。getContext(’2d’); ctx.save(); ctx.translate(400,300); ctx.clearRect(-400,-300,800,600); ctx.strokeStyle =“#cc0000”;
var a = 0,b = 1,m = 6,n = 1;
m = document.forms [0] .m.value;
n = document.forms [0] .n.value;
a = document.forms [0] .a.value;
b = document.forms [0] .b.value;
drawRose(ctx,a,b,m,n);
ctx.restore();
}
函数drawRose(ctx,a,b,m,n){
ctx.beginPath();
var e = 0,c = 120;
var k = 2 * Math.PI / 360;
做{
var r = a / b + Math.sin(m * e / n * k);
r = r * c;
var x = r * Math.cos(e * k);
var y = r * Math.sin(e * k);
e + = 0.1;
ctx.lineTo(x,y);
} while(e
ctx.stroke();
}
函数draw2(){
var ctx = document.getElementById(’canvas’)。getContext(’2d’);
ctx.save();
ctx.translate(400,300);
ctx.clearRect(-400,-300,800,600);
ctx.strokeStyle =“#cc0000”;
ctx.beginPath(); //ctx.moveTo(0,0);
var e = 0,c = 150;
var k = 2 * Math.PI / 360;
做{
x = 150 * Math.cos(5/2 * e * k)+ 50 * Math.cos(15/16 * 5/2 * e * k);
y = 150 * Math.sin(5/2 * e * k)-50 * Math.sin(15/16 * 5/2 * e * k);
e + = 0.1;
ctx.lineTo(x,y);
} while(e
ctx.stroke();
ctx.restore();
}
函数draw3(){
var ctx = document.getElementById(’canvas’)。getContext(’2d’);
ctx。
ctx.translate(400,300);
ctx.clearRect(-400,-300,800,600);
ctx.strokeStyle =“#ff0000”;
ctx.beginPath();
var x = 1,y;
做{
y = -80 *(Math.sqrt(1-x * x)+ Math.pow(x * x,1/3));
x-= 0.001;
ctx.lineTo(100 * x,y);
} while(x> = -1);
做{
y = 80 *(Math.sqrt(1-x * x)-Math.pow(x * x,1/3));
x + = 0.001;
ctx.lineTo(100 * x,y);
} while(x
ctx.closePath();
var grad = ctx.createRadialGradient(-40,-60,10,-40,-40,200);
grad.addColorStop(0,“#ffcc00”);
grad.addColorStop(1,“免费云主机域名#ff0000”);
ctx.fillStyle = grad;
ctx.fill();
// ctx.stroke();
ctx.restore();
}
window.onload = function(){
draw();
}
script>
body>
html>以上是“HTML5 Canvas如何实现玫瑰曲线和心形图案”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注百云主机行业资讯频道!免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@byun.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
本篇内容主要讲解“微信小程序怎么实现菜单弹出的阻尼动画效果”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实免费云主机域名用性强。下面就让小编来带大家学习“微信小程序怎么实现菜单弹出的阻尼动画效果”吧! 实现 代码结构如下: menu.js 参考文档中…
免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。