Advertisement
Spirit13300

BOUTON

Dec 6th, 2017
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1.     <script>
  2.         var cpt=1;
  3.         function bo() {
  4.         cpt=cpt+1;
  5.         console.log(cpt);
  6.         if (cpt>1)
  7.         {
  8.             console.log("changement de theme")
  9.             swapStyleSheet('css/PageCss2.css')
  10.             document.getElementById('logo').setAttribute('src', 'jour.jpg');
  11.             console.log(cpt)
  12.             cpt=0
  13.            
  14.            
  15.         }
  16.         else
  17.         {
  18.             swapStyleSheet('css/page.css')
  19.             document.getElementById('logo').setAttribute('src', 'nuit.jpg');
  20.         }
  21.         }
  22. </script>
  23.         <button id="bouton" onclick="bo()"><img src="nuit.jpg" id="logo"/></button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement