2013-05-30 24 views
1

我有一個WordPress模板,其包括從前頁前頁,同位素和nicescroll所有在1

 <ul class="addthis extra"> 
      <li class="addthis-hold"> 
       <div class="addthis_toolbox" addthis:url="<?php the_permalink(); ?>"> 
        <a class="addthis_button_compact" href="<?php the_permalink(); ?>"><img src="<?php echo GOODLAYERS_PATH; ?>/images/compact.png" width="102px" height="23" alt="email" /></a> 
        <a class="addthis_button_twitter" href="<?php the_permalink(); ?>"><img src="<?php echo GOODLAYERS_PATH; ?>/images/twitter-addthis.png" width="42" height="23" alt="twitter" /></a> 
        <a class="addthis_button_facebook" href="<?php the_permalink(); ?>"><img src="<?php echo GOODLAYERS_PATH; ?>/images/facebook-addthis.png" width="42" height="23" alt="facebook" /></a> 
       </div> 
       <script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js#pubid=xa-51238bfa52ea314a"></script> 
      </li> 
     </ul> 

其次我已綁定在我的元件,其每一個都具有前頁元件的同位素/磚石插件的一組共享按鈕的它..見下圖:

enter image description here

所以,當我將鼠標懸停失敗的addthis_button_compact定位,如果我將鼠標懸停在這之下的一個對象,但它只是更改頂部它確實改變:X;位置..

+0

我遇到同樣的問題。你找到解決方案嗎? – user1447679

+0

我得到鼠標懸停的位置,然後設置位置 - 沒有找到任何好的解決方案:S –

+0

我走了穩定的模態解決方案。見下面的答案。我已經爲同位素添加了額外成分,沒有什麼東西〜感覺穩定 – user1447679

回答

2

嘗試重新繪製工具箱,domready設置等等......唯一可靠的解決方案是更改爲擴展按鈕。我能夠改變立場「onmouseover」,但它感覺不對。

更改此:

<a class="addthis_button_compact"><span>Share</span></a> 

要這樣:

<a class="addthis_button_expanded"><span>Share</span></a> 

顯示模式的版本而不是,這雖然不是我的初衷,原來相當不錯的。所以雖然可能不是解決問題的辦法,但它是一種選擇。