-1

html ファイル:

    // <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"    
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Coming Soon</title>
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
    <link href="tools/style.css" rel="stylesheet" type="text/css" />
    <link href="tools/jquery.countdown.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="tools/jquery.min.js"></script>
    <script type="text/javascript" src="tools/jquery.countdown.js"></script>
    <!-- <script type="text/javascript" src="tools/bg.js"></script> -->
    <script type="text/javascript">
$(function () {
var austDay = new Date();
austDay = new Date(2013, 10, 18, 12, 00);
$('#defaultCountdown').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
    });

    $(function(){
    $('.fadein img:gt(0)').hide();
    setInterval(function(){
      $('.fadein :first-child').fadeOut(3000)
     .next('img').fadeIn(3000)
     .end().appendTo('.fadein');}, 
      3000); // change this to change the transition timing
  });
    </script>
    </head>
    <body>
    <div id="shim"></div>
    <div class="fadein">
    <img src="images/photo1.jpg">
    <img src="images/photo2.jpg">
<img src="images/photo3.jpg">
<img src="images/photo4.jpg">
<img src="images/photo5.jpg">
    </div>
    <div id="content">
    <div class="logo"><h1>Sva Spa and Salon</span></h1></div>   
<div class="right_side">
    <div class="right_content">
        <h2>Watch For Our Brand New Website</h2>
        <div id="defaultCountdown"></div>
        <form class="email" action="">
            <input class="get_notified" type="text"     
    onfocus="if(this.value=='Provide EMAIL for Reminder') this.value='';"        
    onblur="if(this.value=='' || this.value==' ') this.value='Provide EMAIL for   
    Reminder';"     
    value="Provide EMAIL for Reminder"/>
            <input type="button" class="go" />
        </form>
    </div>
</div>
    </div>

    </body>
    </html>

画像が回転し、カウンターのテキストが表示されますが、ページを更新したときにのみ減少します。また、送信ボタンに php コードを追加して、メール アドレスを別のメール アドレスに送信したいのですが、どうすればよいですか? 立ち往生してください....

4

1 に答える 1

0

三つのこと:

  1. id には何もありませんyear。これは意図的なものですか?
  2. カウントダウンは正常に機能するはずですが、残りのコードをデバッグするのはあなたの仕事です
  3. コードを.read()関数内に配置します

コード:

 $(document).ready(function() {
   //your code
 });
于 2013-10-18T18:44:36.737 に答える