js 抛物线随机颜色

Posted wenlx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 抛物线随机颜色相关的知识,希望对你有一定的参考价值。

 
div:nth-of-type(1)
width: 600px;
height: 2px;
background: #000;
position: absolute;
top: 300px;
div:nth-of-type(2)
width: 2px;
height: 600px;
background: #000;
position: absolute;
left: 300px;
span
display: block;
position: absolute;
width:2px;
height:2px;
background: #000;
 

 
<div></div>
<div></div>
<script>
for(var x = -300; x <= 300; x++)
var y = -0.003 * Math.pow(x,2);
document.write(‘<span style="top:‘+ (y + 300) +‘px;left:‘+ (x + 300) +‘px;"></span>‘);
 
 
</script>
 
//随机颜色
// function randomColor()
// var
// r = parseInt(Math.random() * 256).toString(16).length < 2 ? "0" + parseInt(Math.random() * 256).toString(16) : parseInt(Math.random() * 256).toString(16);
// g = parseInt(Math.random() * 256).toString(16).length < 2 ? "0" + parseInt(Math.random() * 256).toString(16) : parseInt(Math.random() * 256).toString(16);
// b = parseInt(Math.random() * 256).toString(16).length < 2 ? "0" + parseInt(Math.random() * 256).toString(16) : parseInt(Math.random() * 256).toString(16);
// return "#" + r + g + b;
//
// document.body.style.background = randomColor();

以上是关于js 抛物线随机颜色的主要内容,如果未能解决你的问题,请参考以下文章

js抛物线动画

js抛物线

在具有统一初始脉冲的抛物线路径上移动 2D 物理体

js加入购物车抛物线动画

js加入购物车抛物线动画

js实现抛物线运动 兼容IE低版本(转)