Jump to content
  • 0

Скрипт YouTube из JS в Jquery


Alarr
 Share

Question

Добрый день.

Есть скрипт для YouTube, который позволяет закрывать и открывать айфрейм с видео одновременно делая паузу или отключая её соостветвенно. Но он на чистом яваскрипте, а мне бы очень хотелось заюзать jquery animate. Может нагло спрашивать такое, но как будет выглядеть этот короткий скрипт на JQuery?
 

function toggleVideo(e) {    var n = document.getElementById("popupVid"),        o = n.getElementsByTagName("iframe")[0].contentWindow;    n.style.display = "hide" == e ? "none" : "", func = "hide" == e ? "pauseVideo" : "playVideo", o.postMessage('{"event":"command","func":"' + func + '","args":""}', "*")}
Edited by Alarr
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

iframe не во всех браузерах анимируется, к сожалению.

 

n.style.display = "hide" == e ? "none" : "", func = "hide" == e ? "pauseVideo" : "playVideo", o.postMessage('{"event":"command","func":"' + func + '","args":""}', "*")

Чёт я не понял. Знаю запятую в объектах, знаю запятую при создании переменных. А в этой мешанине она что делает?

Link to comment
Share on other sites

  • 0

iframe не во всех браузерах анимируется, к сожалению.

 

 

 

n.style.display = "hide" == e ? "none" : "", func = "hide" == e ? "pauseVideo" : "playVideo", o.postMessage('{"event":"command","func":"' + func + '","args":""}', "*")

Чёт я не понял. Знаю запятую в объектах, знаю запятую при создании переменных. А в этой мешанине она что делает?

Этот скрипт был с трудом найден на англофорумах, писал его не я:)  Только адаптировал под свои нужды.

Link to comment
Share on other sites

  • 0

 

n.style.display = "hide" == e ? "none" : "", func = "hide" == e ? "pauseVideo" : "playVideo", o.postMessage('{"event":"command","func":"' + func + '","args":""}', "*")

Чёт я не понял. Знаю запятую в объектах, знаю запятую при создании переменных. А в этой мешанине она что делает?

Эти выражения выполняются слева направо, как тут написано

https://msdn.microsoft.com/ru-ru/library/9b37css7(v=vs.94).aspx

Аналогично, если бы каждое из них писалось в новой строчке через точку запятой.

n.style.display = "hide" == e ? "none" : "";func = "hide" == e ? "pauseVideo" : "playVideo";o.postMessage('{"event":"command","func":"' + func + '","args":""}', "*");

Обычно такое встречается после деобфускации кода.

Edited by amelice
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy