for循环坐标生成《逢五向上转》

Posted 别来无恙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环坐标生成《逢五向上转》相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
  <title></title>
  <style type="text/css">
  div{
  width: 50px;
  height: 50px;
  background-color: red;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 50px;
  text-align: center;
  }
  </style>
  
  <script type="text/javascript">
    window.onload=function (){
  for(var i=0;i<11;i++){
  document.body.innerHTML+=‘<div>‘+i+‘</div>‘;
  }
  var aDiv=document.getElementsByTagName("div");
  for(var j=0;j<6;j++){
  aDiv[j].style.left=j*50+‘px‘;
  aDiv[j].style.top=j*50+‘px‘;
  }
  for(var z=6;z<11;z++){
  aDiv[z].style.left=z*50+‘px‘;
  aDiv[z].style.top=(10-z)*50+‘px‘;
  }
  }
 
</script>
 </head>
 <body>
 </body>
</html>

以上是关于for循环坐标生成《逢五向上转》的主要内容,如果未能解决你的问题,请参考以下文章

for循环

for循环获取坐标

房上的猫:for循环,跳转语句与循环结构,跳转语句进阶

C语言中for循环报错

auto js for循环怎么分别运行两个不同的时间间隔的两个不同坐标的点击循环?

(转)SQL中的循环for循环游标