[主題] 這個主題有人需要嗎?...很有品味呀!! - 第3頁 - iPhone4.TW
本站已於 2026 年 5 月轉為靜態存檔  ·  內容凍結,無法登入、發文、回覆、搜尋  ·  想看吉米最新內容? 前往 jimmy4.tw →


第3頁,共4頁 第一第一 1234 最後最後
顯示結果從 21 到 30 共計 35 條
  1. #21

    超熱血的愛用者

    註冊日期:02-25-2011
    文章:729
    謝謝你: 444
    在 3篇文章中獲得 3個感謝
    請問大大。。。要如何修改24小時。。。
    小弟看不慣國際時間。。。研究很久了。。。
    找不到。。。var TwentyFourHourClock = false 改不到。。。
    幫幫忙一下。。。謝謝﹗﹗﹗
    此篇文章於 05-20-2011 04:42 被 baby55 編輯。


  2. #22
    baw7355 的頭像

    愛用者

    註冊日期:07-28-2010
    文章:170
    謝謝你: 44
    在 0篇文章中獲得 0個感謝
    請問一下 你們都下載的下來嗎?? 我怎麼都下不了???
    都卡在下載框.......= =


  3. #23

    海盜船長

    註冊日期:03-26-2010
    文章:49
    謝謝你: 4
    在 1篇文章中獲得 1個感謝
    很有質感的主題,感謝分享
    辛苦您了!


  4. #24
    baw7355 的頭像

    愛用者

    註冊日期:07-28-2010
    文章:170
    謝謝你: 44
    在 0篇文章中獲得 0個感謝
    下載的下來的大大們~可以傳給我嗎? 我都下載不了= = 麻煩大大們@@


  5. #25
    yarian 的頭像

    熱血的愛用者

    註冊日期:12-01-2010
    文章:269
    謝謝你: 17
    在 5篇文章中獲得 7個感謝
    簡單漂亮~不錯~
    推一把!


  6. #26
    bigsun810621 的頭像

    剛加入我們

    註冊日期:12-30-2010
    文章:27
    謝謝你: 0
    在 2篇文章中獲得 2個感謝
    真的是太感謝了!
    大大的每個主題我都有收藏!!
    真的是佩服大大釋出的每個主題。
    感恩。
    這主題收下了。


  7. #27

    新生報到

    註冊日期:02-28-2011
    文章:8
    謝謝你: 0
    在 0篇文章中獲得 0個感謝
    引用 作者: leeanfu 查看文章
    開啟LockBackground.html文件...
    搜尋新竹...改成...桃園...搞定!!

    前提之下...代碼也要改唷...光改文字沒用!!
    請問...代碼的位置在哪?我找不到!


  8. #28

    超熱血的愛用者

    註冊日期:08-08-2009
    文章:664
    謝謝你: 18
    在 114篇文章中獲得 520個感謝
    引用 作者: baby55 查看文章
    請問大大。。。要如何修改24小時。。。
    小弟看不慣國際時間。。。研究很久了。。。
    找不到。。。var TwentyFourHourClock = false 改不到。。。
    幫幫忙一下。。。謝謝﹗﹗﹗
    朋友...參考我以下代碼...我幫你修正好了12小時制

    查找:LockBackground.HTML文件
    代碼:
    // Convert an hours component of "0" to "12"
    
    
    
      //currentHours = ( currentHours == 0 ) ? currentHours + 24 : currentHours;
    
    
    
      
    
    
    
     
    
    
    
      // Convert the hours component to 12-hour format if needed
    
    
    
      //currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
    
    
    
    
    
    
    
      // Convert an hours component of "0" to "12"
    
    
    
      //currentHours = ( currentHours == 0 ) ? 12 : currentHours;
    
    
    
    
    
    
    
      // Compose the string for display
    
    
    
      var currentTimeString = currentHours + ":" + currentMinutes;
    
    
    
    
    
    
    
      // Update the time display
    
    
    
      document.getElementById("clock").firstChild.nodeValue = currentTimeString;
    
    
    
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    function amPm ( )
    
    
    
    {
    
    
    
      var currentTime = new Date ( );
    
    
    
    
    
    
    
      var currentHours = currentTime.getHours ( );
    
    
    
    
    
    
    
      // Choose either "AM" or "PM" as appropriate
    
    
    
      var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";
    
    
    
    
    
    
    
      // Convert the hours component to 12-hour format if needed
    
    
    
      currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
    
    
    
    
    
    
    
      // Convert an hours component of "0" to "12"
    
    
    
      currentHours = ( currentHours == 0 ) ? 12 : currentHours;
    
    
    
    
    
    
    
      // Compose the string for display
    
    
    
      var currentTimeString = timeOfDay;
    替換成:
    代碼:
    // Convert an hours component of "0" to "12"
    
    
    
      currentHours = ( currentHours == 0 ) ? currentHours + 24 : currentHours;
    
    
    
      
    
    
    
     
    
    
    
      // Convert the hours component to 12-hour format if needed
    
    
    
      currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
    
    
    
    
    
    
    
      // Convert an hours component of "0" to "12"
    
    
    
      currentHours = ( currentHours == 0 ) ? 12 : currentHours;
    
    
    
    
    
    
    
      // Compose the string for display
    
    
    
      var currentTimeString = currentHours + ":" + currentMinutes;
    
    
    
    
    
    
    
      // Update the time display
    
    
    
      document.getElementById("clock").firstChild.nodeValue = currentTimeString;
    
    
    
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    function amPm ( )
    
    
    
    {
    
    
    
      var currentTime = new Date ( );
    
    
    
    
    
    
    
      var currentHours = currentTime.getHours ( );
    
    
    
    
    
    
    
      // Choose either "AM" or "PM" as appropriate
    
    
    
      //var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";
    
    
    
    
    
    
    
      // Convert the hours component to 12-hour format if needed
    
    
    
      //currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
    
    
    
    
    
    
    
      // Convert an hours component of "0" to "12"
    
    
    
      //currentHours = ( currentHours == 0 ) ? 12 : currentHours;
    
    
    
    
    
    
    
      // Compose the string for display
    
    
    
      //var currentTimeString = timeOfDay;
    搞定!!!!!!!!!!!!!!!!!!!!!!


  9. #29

    愛用者

    註冊日期:10-04-2010
    文章:70
    謝謝你: 10
    在 4篇文章中獲得 4個感謝
    THANKYOU


  10. #30
    對IP4一竅不通的fans 的頭像

    海盜船長

    註冊日期:02-14-2011
    文章:231
    謝謝你: 39
    在 1篇文章中獲得 1個感謝
    LEE大 你的主題鎖屏我都有下載

    超喜歡的說~也希望大大能繼續加油為我們謀福利 哈哈!!


 

 

發文規則

  • 不可以發表新主題
  • 不可以發表回覆
  • 不可以上傳附件
  • 不可以編輯自己的文章
  •  
回到此頁頂端