2012-02-06 205 views
0

嗨改變Twitter的標誌我使用下面的代碼Twitter的飼料:在Twitter的飼料

<script src="http://widgets.twimg.com/j/2/widget.js"></script> 
     <script> 
     new TWTR.Widget({ 
      version: 2, 
      type: 'profile', 
      rpp: 3, 
      interval: 6000, 
      width: 195, 
      height: 300, 
      theme: { 
      shell: { 
       background: '#999999', 
       color: '#D6E03D' 
      }, 
      tweets: { 
       background: '#f3f3f3', 
       color: '#999999', 
       links: '#5a5a5a' 
      } 
      }, 
      features: { 
      scrollbar: false, 
      loop: false, 
      live: false, 
      hashtags: true, 
      timestamp: true, 
      avatars: false, 
      behavior: 'all' 
      } 
     }).render().setUser('louise').start(); 


     </script> 

,這是鏈接到widget.js文件。我需要的默認Twitter的是藍色的不是白色的,所以我嘗試下載js文件,並從我的服務器託管,並使用此代碼的代碼改變我的形象:

isFullScreen?" twtr-fullscreen":""}var AA=T?"images/widget-logoblue.png":"http://widgets.twimg.com/i/widget-logo.png"; 

這增加了藍色的圖像中確定,但它打亂了一些,應該是在飼料中不同顏色的鏈接,所以我想我需要堅持鏈接到這個版本:

isFullScreen?" twtr-fullscreen":""}var AA=T?"images/widget-logoblue.png":"http://widgets.twimg.com/i/widget-logo.png"; 

是有辦法,我可以鏈接到這一點,但覆蓋的Twitter形象,他們正在使用我自己的twitter標誌? 任何幫助將不勝感激,謝謝 路易絲

回答

0

我猜的解決方案可能是其中之一:

  1. CSS破解 - 隱藏圖像,並使用背景圖像的CSS屬性,而不是
  2. 檢測圖像加載並替換它然後
  3. 編寫一個自定義小部件。 Example