mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
29 lines
731 B
JavaScript
29 lines
731 B
JavaScript
// Your JavaScript
|
|
$(function() {
|
|
$('.img-center-fill').load(function(){
|
|
var parent = $(this).parent();
|
|
var imgClass = (this.width/this.height > parent.width()/parent.height()) ? 'wide' : 'tall';
|
|
$(this).addClass(imgClass);
|
|
})
|
|
});
|
|
|
|
function onYouTubeIframeAPIReady() {
|
|
$('.youtube-video').each(function() {
|
|
var id = $(this).data('id');
|
|
|
|
var player = new YT.Player('youtube-video-' + id, {
|
|
events: {
|
|
'onStateChange': onPlayerStateChange
|
|
}
|
|
});
|
|
|
|
function onPlayerStateChange(event) {
|
|
if(event.data === YT.PlayerState.ENDED || event.data === YT.PlayerState.PAUSED)
|
|
$('#youtube-title-' + id).show();
|
|
else
|
|
$('#youtube-title-' + id).hide();
|
|
}
|
|
|
|
});
|
|
}
|