1

私はビデオの長いリストを持っています、そしてすべてのブラウザを遅くする多くのiframeがあります。私は彼らのスクリーンショットのみを使用することにしました。スクリーンショットをクリックすると、iframeが表示され、スクリーショットが非表示になります。iframeをデフォルトで非表示に設定しましたが、iframeを動的に追加して、iframeがHTMLコードでまったく記述されないようにしたいのですが、これが私のコードです。

<div class="youtube">
                <div class="description">Desciption 1</div>
                <div class="youtube_thumb">
                    <img src="http://img.youtube.com/vi/mqf6K6qYOWg/0.jpg" style="width:325px;border:0;" />
                    <iframe width="325" height="250" src="http://www.youtube.com/embed/mqf6K6qYOWg" frameborder="0" allowfullscreen></iframe>
                </div>
            </div>
            <div class="youtube">
                <div class="description">Desciption 2</div>
                <div class="youtube_thumb">
                    <img src="http://img.youtube.com/vi/GIc14HyiLNs/0.jpg" style="width:325px;border:0;" />
                    <iframe width="325" height="250" src="http://www.youtube.com/embed/GIc14HyiLNs" frameborder="0" allowfullscreen></iframe>
                </div>
            </div>

等々..

およびjavascript:

$('.youtube_thumb > img').click(function(){
            var $img = $(this);
            $img.hide();
            $img.next().show();
        });

とスタイル:

.youtube_thumb iframe { display:none; }
.youtube_thumb:hover { cursor:pointer; }

ご覧のとおり、おそらくご存知のとおり、私が取得するスクリーンショットはYouTubeから直接のものであるため、スクリーンショットのリンク:mqf6K6qYOWg/0.jpgとフレーム内のリンク:/embed/mqf6K6qYOWgは同じです。スクリーンショットのリンクを使用して、iframeに同じリンク。どうすればこれを行うことができますか?

4

2 に答える 2

2
$('.youtube_thumb > img').click(function(){
    var parts = this.src.split("/");  //grab the url and split it into parts
    var id = parts[parts.length-2]; //grab the second to last piece
    $('<iframe width="325" height="250" src="http://www.youtube.com/embed/' + id + '" frameborder="0" allowfullscreen></iframe>').insertAfter(this);  //append the iframe
    $(this).hide();  // .remove();
});
于 2013-02-19T14:09:11.860 に答える
1

imgをタグにラップします

<a class="wrap" href="http://www.youtube.com/embed/mqf6K6qYOWg"><img /></a>

jquery

$('.wrap').on('click', function() {
    var src = $(this).attr('href');
    $(this).before('<iframe width="325" height="250" src="'+src+'" frameborder="0" allowfullscreen></iframe>');
    $(this).remove();
    return false;
)}
于 2013-02-19T14:03:01.010 に答える