Guest User

html

a guest
Nov 15th, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.42 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4.     <link rel="stylesheet" type="text/less" href="style.less" />
  5.     <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/less.js/1.4.1/less.min.js"></script>
  6.     <script>
  7.     function myFunction() {
  8.         setInterval(function(){
  9.             less.modifyVars({
  10.                 '@base': '#00ff00',
  11.             });
  12.         },3000);
  13.     }
  14.     </script>
  15. </head>
  16. <body>
  17.     <button onclick="myFunction()">Probeeeer</button>
  18. </body>
  19.  
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment