This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var seat = 43; | |
document.getElementById('countdown').innerHTML = seat; | |
const myInterval = setInterval(decre, 15000); | |
function showChange(){ | |
seat = seat - 2 | |
document.getElementById('countdown').innerHTML = seat; | |
} | |
function decre(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const element = document.querySelector('.bottomMenu'); | |
const styleJs = { | |
display: 'none', | |
position: 'fixed', | |
opacity: '0.95', | |
left: '0', | |
bottom: '0', | |
width: '100%', | |
height: '120px', | |
zIndex: '1' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
src: "https://codepen.io/zazizuw/pen/WNQNrpr/" | |
this is only simplification from many animation heading style | |
*/ | |
jQuery(document).ready(function($){ | |
//set animation timing | |
var animationDelay = 6000; | |
NewerOlder