妙味課堂基礎篇0_3代碼

一、日曆javascript

  • 1

    JANcss

  • 2

    FERhtml

  • 3

    MARjava

  • 4

    APR正則表達式

  • 5

    MAY編程

  • 6

    JUN瀏覽器

  • 7

    JUL性能

  • 8

    AUG優化

  • 9

    SEP動畫

  • 10

    OCT

  • 11

    NOV

  • 12

    DEC

1月活動

快過年了,你們能夠商量着去哪玩吧~

<!DOCTYPE html PUBLIC "-//W3C//h2D XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/h2D/xhtml1-transitional.h2d">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JavaScript簡易日曆 - 妙味課堂 - www.miaov.com</title>
<style type="text/css">
    * { padding: 0; margin: 0; }
li { list-style: none; }
body { background: #f6f9fc; font-family: arial; }

.calendar { width: 210px; margin: 0 auto; padding: 10px 10px 20px 20px; background: #eae9e9; }
.calendar ul { width: 210px; overflow: hidden; padding-bottom: 10px; }
.calendar li { float: left; width: 58px; height: 54px; margin: 10px 10px 0 0; border: 1px solid #fff; background: #424242; color: #fff; text-align: center; cursor: pointer; }
.calendar li h2 { font-size: 20px; padding-top: 5px; }
.calendar li p { font-size: 14px; }

.calendar .active { border: 1px solid #424242; background: #fff; color: #e84a7e; }
.calendar .active h2 { }
.calendar .active p { font-weight: bold; }

.calendar .text { width: 178px; padding: 0 10px 10px; border: 1px solid #fff; padding-top: 10px; background: #f1f1f1; color: #555; }
.calendar .text h2 {font-size: 14px; margin-bottom: 10px; }
.calendar .text p { font-size: 12px; line-height: 18px; }
</style>
</head>
<body>
    <div id="tab" class="calendar">

        <ul>
            <li class="active"><h2>1</h2><p>JAN</p></li>
            <li><h2>2</h2><p>FER</p></li>
            <li><h2>3</h2><p>MAR</p></li>
            <li><h2>4</h2><p>APR</p></li>
            <li><h2>5</h2><p>MAY</p></li>
            <li><h2>6</h2><p>JUN</p></li>
            <li><h2>7</h2><p>JUL</p></li>
            <li><h2>8</h2><p>AUG</p></li>
            <li><h2>9</h2><p>SEP</p></li>
            <li><h2>10</h2><p>OCT</p></li>
            <li><h2>11</h2><p>NOV</p></li>
            <li><h2>12</h2><p>DEC</p></li>
        </ul>

        <div class="text">
            <h2>1月活動</h2>
            <p>快過年了,你們能夠商量着去哪玩吧~</p>
        </div>

    </div>
<script type="text/javascript">
var innerText=
[
    "快過年了,你們能夠商量着去哪玩吧~",
    "精通JavaScript開發課程 - 結課標準 - 有十條標準可以讓你們修練成JS高手……",
    "妙味茶館(bbs.miaov.com),正式開張,它看起來是論壇,實際上是個技術驛站,分紅了五個版塊:視頻教程、妙味生活秀、特效兜兒、技術交流、妙味聊吧",
    "精通各類DOM類應用,熟練掌握面向對象編程思想(OOP)、熟悉JS面向對象開發方式 - 妙味課堂 - www.miaov.com",
    "熟練掌握AJAX技術及相關應用(例如:新浪微博級應用) - 妙味課堂 - www.miaov.com",
    "能夠獨立寫出相似jQuery的小型庫(支持各種選擇符、事件類、DOM、自定義動畫animate、AJAX……) - 妙味課堂 - www.miaov.com",
    "精通JS運動特效技術,能完整實現各種網站全部動畫特效,如 妙味課堂 官網 - 妙味課堂 - www.miaov.com",
    "掌握JS調試及優化技術、能兼容全部瀏覽器 - 妙味課堂 - www.miaov.com",
    "精通JS事件對象及事件的工做機制,並能完成各種跨平臺應用模塊的開發 - 妙味課堂 - www.miaov.com",
    "能獨立開發表現和性能都很優秀的RIA應用 - 妙味課堂 - www.miaov.com",
    "瞭解後臺編程的相關知識,可以和後臺工程師配合完成大型交互應用 - 妙味課堂 - www.miaov.com",
    "熟悉正則表達式的編寫、應用及高級表單驗證技術 - 妙味課堂 - www.miaov.com"
];
    window.onload = function(){
        var lis = document.getElementsByTagName("li");
        var texts = document.getElementsByClassName("text");
 
        for (var i = 0; i < lis.length; i++) {
            lis[i].index = i;
            lis[i].onmouseover = function(){
                for (var i = 0; i < lis.length; i++) {
                    lis[i].className = "";
                }    
                lis[this.index].className = "active";           
                texts[0].innerHTML = "<h2>"+(this.index+1)+"月活動</h2>"
                                    +"<p>"+innerText[this.index]+"</p>"                                   ;           
        }

    }
}
</script>
</body>
</html>
二、時間
<!DOCTYPE html><html><head><meta charset="utf-8">    <title>get時間</title></head><body><div><p id="p"> </p></div></body><script type="text/javascript">    window.onload = function(){    var p = document.getElementById("p");    show(); setInterval(show,1000);    function toDouble(n){        if(n>10){            return n;        }else{            return "0"+n;        }    }    function getWeekDay(n){        switch(n){            case 0:                return "星期日";            case 1:                return "星期一";            case 2:                return "星期二";            case 3:                return "星期三";            case 4:                return "星期四";            case 5:                return "星期五";            case 6:                return "星期六";        }    }    function show(){     var getdate = new Date;     var year = getdate.getFullYear();     var month = getdate.getMonth()+1;     var date = getdate.getDate();     var day = getdate.getDay();     var hour = getdate.getHours();     var minute = getdate.getMinutes();     var second = getdate.getSeconds();     p.innerHTML = year+"年"+month+"月"+date+"日"+getWeekDay(day)+"<br/>"+toDouble(hour)+"時"+toDouble(minute)+"分"+toDouble(second)+"秒";        }}    </script></html>
相關文章
相關標籤/搜索