JS打印彩色菱形的实例代码

前端之家收集整理的这篇文章主要介绍了JS打印彩色菱形的实例代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

效果图如下所示:

具体代码如下所示:

<Meta charset="UTF-8"> weirdo
function cl() { var c = '0123456789abcdef'; var cc = '#'; cc += c.charAt(Math.round(Math.random() * (c.length - 1))); cc += c.charAt(Math.round(Math.random() * (c.length - 1))); cc += c.charAt(Math.round(Math.random() * (c.length - 1))); cc += c.charAt(Math.round(Math.random() * (c.length - 1))); cc += c.charAt(Math.round(Math.random() * (c.length - 1))); cc += c.charAt(Math.round(Math.random() * (c.length - 1))); return cc; } function ling(num) { for (var i = 1; i <= num; i += 2) { document.write('

'); } document.write('

'); } for (var i = num; i >= 1; i -= 2) { document.write('

'); } document.write('

'); } } ling(15);

总结

以上所述是小编给大家介绍的JS打印彩色菱形的实例代码。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持

原文链接:https://www.f2er.com/js/30950.html

猜你在找的JavaScript相关文章