jquery
  • html5
  • video
  • html5-video
  • 2012-08-10 104 views 7 likes 
    7

    我有一個登錄頁面,我想要做的就是在完成播放以顯示底下的背景後淡出對象。使用jQuery或任何其他方法淡出<video><div>標記是好的。播放後淡出html5視頻對象

    <div id="video"> 
    <video width="100%" height="auto" autoplay="autoplay"> 
        <source src="monarch.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'> 
        <source src="monarch.ogv" type='video/ogg; codecs="theora, vorbis"'> 
    </video> 
    </div> 
    

    回答

    10

    嘗試以下操作:

    $('#video video').bind('ended', function(){ 
        $(this).parent().fadeOut() 
    }) 
    
    +1

    好的,謝謝。 這也適用於使用動畫,以保持該塊元素不變:。 \t $( '#視頻錄像')綁定( '結束',函數(){ \t \t $(本).parent()動畫({不透明度:0},3000); \t}) – 2012-08-10 06:02:49

    +0

    @Vince歡迎您:)。 – undefined 2012-08-10 06:26:42

    +0

    太好了...謝謝.... – Vishnu 2016-12-28 09:05:10

    相關問題