[桌布] 大家一起來分享你看過或裝過漂亮的主題吧... - 第4頁 - iPhone4.TW
本站已於 2026 年 5 月轉為靜態存檔  ·  內容凍結,無法登入、發文、回覆、搜尋  ·  想看吉米最新內容? 前往 jimmy4.tw →


第4頁,共6頁 第一第一 123456 最後最後
顯示結果從 31 到 40 共計 53 條
  1. #31

    新生報到

    註冊日期:03-06-2008
    文章:2
    謝謝你: 0
    在 0篇文章中獲得 0個感謝
    引用 作者: Answer11011 查看文章
    我iBOX NP剛剛裝好
    但是
    有幾個小問題0.0

    1.他沒設計到搜尋頁,所以當你換到搜尋頁,上面的時鐘會檔到
    2.不知道設計者是用歐洲哪個國家的語言,ICON是都有換好,但是ICON(XXX.PNG)的圖檔上面的文字我有些看不太懂
    3.時鐘也是,我搞不太清楚那是哪國語言
    其他目前沒啥問題
    有要裝的參考一下吧
    安裝方式在上面載點的檔案裡有圖解
    第2及3項
    你找Wallpaper.html檔
    接著用記事本開啟
    接著把下方的所有編碼蓋掉他吧!
    就應該沒問題了

    <html>
    <head><title>newclock</title></head>
    <style>
    SPAN#clock
    {
    font-family: Helvetica;
    color: #ffffff;
    font-size: 34px;
    text-shadow: #000000 1px 2px 1px;
    }
    SPAN#ampm
    {
    font-family: Helvetica;
    color: #ffffff;
    font-size: 18px;
    text-shadow: #000000 1px 2px 1px;

    </style>
    <script type="text/javascript">
    // -->
    function init ( )
    {
    timeDisplay = document.createTextNode ( "" );
    document.getElementById("clock").appendChild ( timeDisplay );
    }
    function updateClock ( )
    {
    var currentTime = new Date ( );
    var currentHours = currentTime.getHours ( );
    var currentMinutes = currentTime.getMinutes ( );
    var currentSeconds = currentTime.getSeconds ( );
    // Pad the minutes and seconds with leading zeros, if required
    currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
    currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
    // 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 = currentHours + ":" + currentMinutes;
    // Update the time display
    document.getElementById("clock").firstChild.nodeValue = currentTimeString;
    }
    function init2 ( )
    {
    timeDisplay = document.createTextNode ( "" );
    document.getElementById("ampm").appendChild ( timeDisplay );
    }
    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;
    // Update the time display
    document.getElementById("ampm").firstChild.nodeValue = currentTimeString;}
    // -->
    </script>
    </head>

    <body bgcolor="black" background="Wallpaper.png">


    <table style="position: absolute; top: 65px; left: 3px; width: 320px; height: 461px;" cellspacing="0" cellpadding="0" align="center">
    <tr align="center" valign="top" border="0" cellpadding="0">
    <td height="10" valign="top">
    <span id="clock">
    <script language="JavaScript">updateClock(); setInterval('updateClock()', 1000 )</script></span><span id="ampm">
    <script language="JavaScript">amPm(); setInterval('amPm()', 1000 )</script>
    </span>
    </td>
    </tr>
    <tr>
    <td id="date" valign="top">
    <script language="JavaScript">document.write(this_date_string)</script>
    </td>
    </tr>
    </table>
    <html>
    <head><title>newclock</title></head>
    <style>

    SPAN#calendar
    {
    font-family: Helvetica;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    text-shadow: #000000 1px 2px 1px;
    }

    </style>
    <script type="text/javascript">
    function init ( )
    {
    timeDisplay = document.createTextNode ( "" );
    document.getElementById("clock").appendChild ( timeDisplay );
    }

    function init3 ( )
    {
    timeDisplay = document.createTextNode ( "" );
    document.getElementById("calendar").appendChild ( timeDisplay );
    }
    function calendarDate ( )
    {
    var this_weekday_name_array = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    var this_month_name_array = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec") //predefine month names

    var this_date_timestamp = new Date()
    var this_weekday = this_date_timestamp.getDay()
    var this_date = this_date_timestamp.getDate()
    var this_month = this_date_timestamp.getMonth()
    document.getElementById("calendar").firstChild.nodeValue = this_weekday_name_array[this_weekday] + ", " + this_month_name_array[this_month] + " " + this_date //concat long date string
    }
    </script>
    </head>

    <body bgcolor="black" background="Wallpaper.png">
    <table style="position: absolute; top: 10px; left: 0px; width: 320px; height: 461px;" cellspacing="0" cellpadding="0" align="center">
    <tr align="center" valign="top" border="0" cellpadding="0">
    <td style="padding-top:12px;" background="datewidget.png" height="60" valign="top">
    <span id="clock">
    <script language="JavaScript">updateClock(); setInterval('updateClock()', 1000 )</script></span><span id="ampm">
    <script language="JavaScript">amPm(); setInterval('amPm()', 1000 )</script>
    </span><br>
    <span id="calendar">
    <script language="JavaScript">calendarDate(); setInterval('calendarDate()', 1000 )</script>
    </span>
    </td>
    </tr>
    <tr>
    <td align="center" valign="top">
    <span id="calendar">
    <script language="JavaScript">calendarDate(); setInterval('calendarDate()', 1000 )</script>
    </span>
    </td>
    </tr>
    </table>
    </body>
    </html>
    此篇文章於 02-04-2010 12:21 被 alexkwk 編輯。


  2. #32
    KENKOBE7413 的頭像

    海盜船長

    註冊日期:12-04-2009
    文章:900
    謝謝你: 61
    在 13篇文章中獲得 34個感謝
    引用 作者: el961cs 查看文章


    http://www.5idownload.com/download/t...Beta%201.0.zip


    下載
    http://blog.alltechrelated.com/tag/montimedia


    http://blog.alltechrelated.com/tag/wood

    Inav Apple iLive 2.0 Mod B&W

    [youtube2]<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/jNdiNOa1AvM&hl=zh_TW&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/jNdiNOa1AvM&hl=zh_TW&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object>[/youtube2]

    http://rapidshare.com/files/29691734..._Apple_2.0.rar

    MPSN

    下載
    http://57.gafmediastudio.com/downloa...1.1Full-EN.zip

    iNav Montimedia V.2 SpringJump!!!

    [youtube2]<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/SJtP6iCAEo4&hl=zh_TW&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/SJtP6iCAEo4&hl=zh_TW&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>[/youtube2]
    http://www.deviantart.com/download/1...Montimedia.rar

    Aizle

    下載
    http://www.mediafire.com/?tjmnltzfguy

    Black ReTouch

    有人能教我Inav Apple iLive 2.0 Mod B&W
    的安裝方式嗎?

    Inav的安裝方式都一樣嗎?是可以直接套用於其他Inav的嗎?

    爬文都是英文教學

    但我是英文**

    請幫幫我


  3. #33
    a091216122 的頭像

    剛加入我們

    註冊日期:04-15-2010
    文章:19
    謝謝你: 1
    在 0篇文章中獲得 0個感謝
    問題已解決...恕刪 感恩XD~~~
    此篇文章於 05-12-2010 19:05 被 a091216122 編輯。


  4. #34

    剛加入我們

    註冊日期:03-26-2010
    文章:16
    謝謝你: 0
    在 1篇文章中獲得 1個感謝
    看好多好漂亮的布景!!
    但想請問一下!!

    打訊息可以中文打字嗎


  5. #35
    a091216122 的頭像

    剛加入我們

    註冊日期:04-15-2010
    文章:19
    謝謝你: 1
    在 0篇文章中獲得 0個感謝
    請問...
    有人有這個主題的載點嗎
    Inav Apple iLive 2.0 Mod B&W


    因為阿...
    不但這裡的連結好像錯誤了XD
    而且對岸的載點也下載不了
    不知道
    有沒有哪位大大能不吝嗇分享餒XD 感恩在感恩~~


  6. #36

    海盜船長

    註冊日期:01-24-2010
    文章:39
    謝謝你: 0
    在 1篇文章中獲得 1個感謝
    用古狗打white apple hd 找找看囉。


  7. #37

    熱血的愛用者

    註冊日期:10-12-2009
    文章:483
    謝謝你: 3
    在 0篇文章中獲得 0個感謝
    [quote=a091216122;247605]
    引用 作者: el961cs 查看文章
    板上不知有無Token 主題的愛好者...?

    真的很不錯

    6mik-design

    Whitoken

    下載
    http://www.deviantart.com/download/1...y_Virtuos0.zip


    大大們
    這是小弟目前所用的主題
    目前為止都還不錯 可是卻遇到一些問題
    以下是小弟的圖片

    現在小弟碰到的問題來了
    第一點就是 進去home畫面的時候 卻出現了這樣的畫面

    而進去其他 app media game 則是出現這樣的畫面 實在是不知道問題出來哪裡XD

    還請麻煩各位大大幫幫小弟的忙XD

    另外 發現一個小疑問
    這個主題的檔案裡面 好像有包含home.app.media.gome的切換畫面
    可是小弟的卻是這個畫面
    不知道有沒有大大可以幫忙小弟的忙
    我跟你用一樣的主題,我比較好奇的是,你如何把那些page的字給弄消失的~~!至於你用games的那個畫面,好像可以去categories內設定,就可以變成你按下home鍵時所顯示出來的樣子了,總比背景跟字相疊還好看巴


  8. #38

    新生報到

    註冊日期:05-04-2010
    文章:9
    謝謝你: 0
    在 0篇文章中獲得 0個感謝
    已刪.............------
    此篇文章於 05-12-2010 01:51 被 chris4hk 編輯。 原因: 發錯文 *.*"


  9. #39

    新生報到

    註冊日期:05-04-2010
    文章:6
    謝謝你: 0
    在 0篇文章中獲得 0個感謝
    請問 我下載的app 圖示檔會在哪邊

    比如說 遠流字典通 他的圖示檔要在那邊找!?

    想做修改 比較搭整體佈景主題


  10. #40

    新生報到

    註冊日期:05-10-2010
    文章:2
    謝謝你: 0
    在 0篇文章中獲得 0個感謝
    請問一下
    為什麼我安裝好MPSN的佈景之後
    所有的圖示都可以正常顯示
    偏偏就是鎖定畫面跟充電畫面是一片黑
    時間跟電量都沒有出現
    不知道有沒有人知道怎麼解決**


 

 

發文規則

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