设计之家 > 教程 > 網頁教程 > 其他教程 >

網頁常用特效之中級篇

作者:未知 來源:本站原創 時間:2006-03-27

  筆者日積月累了許多精彩、實用的Web特效的制作,這些特效幾乎都是比較常用的網頁特效。現在我就把這些經過整理和修改過的特效分三個級別分別介紹給大家。

  中級篇

  1.節日倒計時

  <Script Language="javascript">
  var timedate= new Date("October 1,2002");
  var times="國慶節";
  var now = new Date();
  var date = timedate.getTime() - now.getTime();
  var time = Math.floor(date / (1000 * 60 * 60 * 24));
  if (time >= 0)
  document.write("現在離"+times+"還有: "+time +"天")</Script>

  2.單擊按鈕打印出當前頁

  <Script  Language="javascript">
  <!-- Begin
  if (window.print) {
  document.write('<form>'
  + '<input type=button name=print value="打印本頁" '
  + 'onClick="javascript:window.print()"></form>');
  }
  // End -->
  </Script>

  3.單擊按鈕‘另存為’當前頁

  <input type="button" name="Button" value="保存本頁"
  onClick="document.all.button.ExecWB(4,1)">
  <object  id="button"
  width=0
  height=0
  classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2">
  <embed width="0"   height="0"></embed>
  </object>

  4.顯示系統當前日期

  <script language=javascript>
  today=new Date();
  function date(){
  this.length=date.arguments.length
  for(var i=0;i<this.length;i++)
  this[i+1]=date.arguments[i]  }
  var d=new date("星期日","星期一","星期二","星期三","星期四","星期五","星期六");
  document.write(
  "<font color=##000000 style='font-size:9pt;font-family: 宋體'> ",
  today.getYear(),"年",today.getMonth()+1,"月",today.getDate(),"日",
  d[today.getDay()+1],"</font>" );
  </script>

推薦設計

最新文章