index.html 786 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <meta name="theme-color" content="#000000" />
  8. <meta name="description" content="Web site created using create-react-app" />
  9. <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
  10. <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
  11. <title>WhiteSource</title>
  12. </head>
  13. <body>
  14. <div id="root"></div>
  15. <script type="text/javascript">
  16. window.addEventListener('scroll', ()=>{
  17. let header = document.querySelector('.fix');
  18. header.classList.toggle('sticky', window.scrollY>0)
  19. });
  20. </script>
  21. </body>
  22. </html>