html+js实现打印倒正金字塔直线

代码展示:


<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Documenttitle>
  <style>
      h1{
      
        text-align:center;
        }
  style>
head>
<body>
  <h1>倒正金字塔<h1/>
  <script>
    for(var i=10;i>-11;i--)
    {
      
      document.write("
+
10*Math.abs(i) + "%/>") }
script> body> html>

效果展示:
html+js实现打印倒正金字塔直线_第1张图片

你可能感兴趣的:(Web前端,html,js,css)