mirror of
https://github.com/exane/not-gwent-online
synced 2025-11-05 00:58:26 +00:00
move music data to assets
This commit is contained in:
46
assets/js/temp.js
Normal file
46
assets/js/temp.js
Normal file
@@ -0,0 +1,46 @@
|
||||
// Start music.
|
||||
$(".video-self").tubeplayer({
|
||||
width: 0.001,
|
||||
height: 0.001,
|
||||
initialVideo: "UE9fPWy1_o4",
|
||||
autoPlay: true,
|
||||
onPlayerEnded: function(){
|
||||
$(".video-self").tubeplayer('play');
|
||||
}
|
||||
});
|
||||
|
||||
if(localStorage.getItem('volume') == 'off') {
|
||||
$('.music-icon').removeClass('active');
|
||||
}
|
||||
|
||||
if(localStorage.getItem('volumeValue') != null) {
|
||||
$('.video-self').tubeplayer('volume', localStorage.getItem('volumeValue'));
|
||||
} else {
|
||||
$('.volume').val('75');
|
||||
$('.video-self').tubeplayer('volume', 75);
|
||||
}
|
||||
|
||||
// Set volume.
|
||||
$('.volume').on('blur', function() {
|
||||
var val = $(this).val();
|
||||
|
||||
if(val > 100) val = 100;
|
||||
if(val < 0) val = 0;
|
||||
if( ! val) val = 75;
|
||||
|
||||
$('.video-self').tubeplayer('volume', val);
|
||||
localStorage.setItem('volumeValue', val);
|
||||
});
|
||||
|
||||
// Music options.
|
||||
$('.music-icon').on('click', function() {
|
||||
if($(this).hasClass('active')) {
|
||||
localStorage.setItem('volume', 'off');
|
||||
$(this).removeClass('active');
|
||||
$(".video-self").tubeplayer('mute');
|
||||
} else {
|
||||
localStorage.setItem('volume', 'on');
|
||||
$(this).addClass('active');
|
||||
$(".video-self").tubeplayer('unmute');
|
||||
}
|
||||
});
|
||||
4
assets/js/tubeplayer.js
Normal file
4
assets/js/tubeplayer.js
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user