0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Magnific Popup(ポップアップ) 使い方メモ(youtube)

Posted at

Magnific Popup

github

//youtube ポップアップ
$(function (){
  $('.popup-youtube').magnificPopup({//動画リンクのaタグ要素を指定
    type: 'iframe',//ここの指定で画像のポップアップなども可能!
    mainClass: 'mfp-fade',
    removalDelay: 200,
    preloader: false
  });
});
<!-- 読み込むもの -->
<link rel="stylesheet" href="css/magnific-popup.css">
<script type="text/javascript" src="js/jquery.magnific-popup.min.js"></script>
<!-- ポップアップさせたいyoutube動画のURLを指定したaタグ -->
<a href="youtubeのURL" class="popup-youtube"></a>

youtubeの動画をポップアップする前提のメモになります。
他にも画像のポップアップなど色々できるみたいです。
もっと詳しく調べたら追記したいと思います。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?