zoukankan      html  css  js  c++  java
  • PHP面向对象部分代码示例


    <!DOCTYPE html>
    <html>
    <head lang="en">
    <meta charset="UTF-8">
    <title></title>
    </head>
    <body>

    <button id="start">开始移动</button>
    <button id="stop">停止</button>

    <div id="move" style=" 100px;height:100px;background-color:red;position: absolute;left:0px;"></div>

    </body>
    </html>
    <script>

    var moveDivObj = document.getElementById("move");

    document.getElementById("start").onclick=function(){

    var timeID = window.setInterval(function(){
    var leftNum = parseInt(moveDivObj.style.left);
    leftNum+=50;
    moveDivObj.style.left=leftNum+"px";
    },100);
    }

    </script>这一部分结合了js+PHP数据处理+oo,运用当前窗口执行一系列操作
  • 相关阅读:
    echo
    shell
    grub
    find
    脚本案例
    dd if= of= MBR
    cat <<EOF> file
    fieldset——一个不常用的HTML标签
    闪烁图片
    跑马灯效果
  • 原文地址:https://www.cnblogs.com/cgdblog/p/7325733.html
Copyright © 2011-2022 走看看