Guest User

Untitled

a guest
Nov 15th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. /**
  2. * 静止画像に動画のURLを埋め込んでおき、
  3. * クリックしたらiframeを表示して動画を読み込み、画像は非表示にして入れ替える
  4. */
  5. $('.sampleMovieArea').on('click', 'img.sampleMovie', function() {
  6. var url = $(this).attr('data-url');
  7. $(this).parent('.sampleMovieArea').find("iframe").attr("src", url).removeClass('d-none');
  8. $(this).addClass('d-none');
  9. });
Add Comment
Please, Sign In to add comment