1

HTML5 ビデオの終了後にシャドーボックス ウィンドウを自動的に閉じるのに問題があります。

私は何か間違ったことをしていますか?助けてください!

<script type="text/javascript">
Shadowbox.init({
    // skip the automatic setup 
    skipSetup: true
});

window.onload = function() {
    // open ASA the window loads
    Shadowbox.open({
        content:    '<video width="576" height="324" autoplay id="trailer"> <source src="../media/trailer.mp4" type="video/mp4"> Your browser does not support the video tag. </video>',
        player:     "html",
        height:     329,
        width:      581
    });
    document.getElementById('trailer').addEventListener('ended',myHandler,false);
    function myHandler(e) {
        if(!e) { e = window.event; }
        Shadowbox.close(); 
};


    }</script>
4

0 に答える 0