亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

第一個動畫與

Original 2019-03-29 16:15:44 249
abstract:<!DOCTYPE html><html><head> <title>第一個動畫</title> <style type="text/css">     p{width: 500px;height: 30px;margin: 50px auto;     backgr

<!DOCTYPE html>

<html>

<head>

<title>第一個動畫</title>

<style type="text/css">

    p{width: 500px;height: 30px;margin: 50px auto;

    background-color: pink;text-align: center;}


.box{

width: 500px;

height: 400px;

margin: 0px auto;

border: 1px solid #ccc;

background-color: pink;


}

</style>

</head>

<body>

<p>

      請輸入你的學號:<input type="text" name="" onfocus="myinfor(this)"

       onblur="myinforout(this)">號

    </p>

<br>

<br>

    <div class="box"  onmouseover="myfoc(this)" onmouseout=" myfocout(this)">

  

    </div>

    <script type="text/javascript">

    function myinfor(x){

           x.style.background="#ccc";

    }

    function myinforout(c){

           c.style.background="";

    }

    function myfoc(y){

    y.style.borderRadius="250px";

    }

    function myfocout(z){

    z.style.borderRadius="0px";

    }

    </script>

</body>

</html>

1553847249886914.jpg

Correcting teacher:天蓬老師Correction time:2019-03-30 10:46:27
Teacher's summary:這是什么動畫呢, 只有一些簡單的樣式重寫吧

Release Notes

Popular Entries