페이지 스타일 디자인
1, 페이지 색상 스타일 변경:
<style> table{background:#99ffcc;} th{font-family:隶书;color:#0099ff;} #tr1{background:#00ccff;} .td1{color:#009999;} a{color:#ff9900;} </style>
작업은 다음과 같습니다:
2, 마우스 터치 표시 효과 변경:
echo "<tr id='tr1'onmouseOver='overTr(this)'onmouseOut='outTr(this)'>";echo "<th onmouseOver='overTr(this)'onmouseOut='outTr(this)'>日</th>"; echo "<th onmouseOver='overTh(this)' onmouseOut='outTh(this)'><a href='?convert=$ymd'>{$d}</a></th>"; echo "<tr onmouseOver='overTr(this)'onmouseOut='outTr(this)'><td colspan='7'align='center'>"; echo "<tr onmouseOver='overTr(this)'onmouseOut='outTr(this)'><td colspan='7' align='center'>"; <script type='text/JavaScript'> var oriCol=null;function overTr(obj){ oriCol=obj.bgColor;obj.bgColor='#0f0'; } function outTr(obj){ obj.bgColor=oriCol; } function overTh(obj) { oriCol=obj.bgColor; obj.bgColor='red'; } function outTh(obj){ obj.bgColor=oriCol; } </script>
작업 효과는 다음과 같습니다. 다음과 같습니다: