html
  • css
  • jwplayer
  • 2014-02-17 64 views 1 likes 
    1

    我在jwplayer中加載了一個視頻,並在其旁邊放置了一個縮略圖的小視頻隊列。出於某種原因,當我的玩家加載時,它會將整個隊列推到玩家下方,儘管它緊挨着它。它的行爲就好像容器太小了,但如果我將videoWrapper放大,我會得到相同的行爲。JWplayer加載後元素的位置發生變化

    HTML:

    <div id="videoWrapper"> 
        <div id="video"></div> 
    
        <script type='text/javascript'> 
          jwplayer('video').setup({ 
            file: <?php echo '\''.$sex.'\''?>, 
            width: '750', 
            height: '420', 
            primary: 'flash', 
            autostart: 'false' 
          }); 
        </script> 
    
        <div id="queueList"> 
         Up Next 
         <input type="image" src=<?php echo $thumbs[0]; ?> class="thumb" /> 
         <input type="image" src=<?php echo $thumbs[1]; ?> class="thumb" /> 
         <input type="image" src=<?php echo $thumbs[2]; ?> class="thumb" /> 
         <input type="image" src=<?php echo $thumbs[3]; ?> class="thumb" /> 
        </div> 
    </div> 
    

    CSS:

    #videoWrapper{ 
        display:block; 
        width:872px; 
        height:420px; 
        margin-top:40px; 
        margin-left:auto; 
        margin-right:auto; 
    }#queueList{ 
        width:120px; 
        height:420px; 
        float:right; 
    }.thumb{ 
        margin-top:7px; 
        width:120px; 
        height:auto; 
        background:black; 
    }#video{ 
        width:750px; 
        height:420px; 
        background:black; 
        color:purple; 
        float:left; 
    } 
    

    如果任何人都可以提供任何形式的原因,這種情況正在發生或工作圍繞我將非常感激。

    實況看什麼我談論這裏可以看到:http://porndoraone.com/test2.php 橙色盒子應該是黑色的邊框內,毗鄰視頻。

    +0

    請提供一個鏈接到你正在運行這個。 – emaxsaun

    +0

    你可以在這裏看到愚蠢的版本:http://porndoraone.com/test2.php 這是最容易看到Safari或鉻上發生了什麼 – Voltron

    +0

    它似乎加載在Chrome瀏覽器相同的Firefox,導航是在右下角。 – emaxsaun

    回答

    1

    解決方案似乎很簡單。所有你需要做的是什麼風格#video_wrapper,由jwplayer創建的,是這樣的:

    #video_wrapper { 
        float: left; 
    } 
    

    看到這個JSFiddle與工作演示。

    +0

    我已經測試過,看起來不起作用。 看起來你不僅添加了「float:left;」而且「職位:親戚」。我已經嘗試過所有這些組合,它似乎沒有產生預期的結果。 – Voltron

    +0

    檢查我更新的帖子和附加的JSFiddle。 –

    +0

    帕維爾,這是太棒了,像魅力一樣工作。我不知道JWPlayer創建了這個#video_wrapper ...我可以在哪裏學習更多? – Voltron

    相關問題