Advertisement
CR7CR7

corection-nav

May 7th, 2023
1,464
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.18 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="UTF-8" />
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7.         <title>Nav bar pinning question using GSAP</title>
  8.  
  9.         <!-- GSAP -->
  10.         <script
  11.             defer
  12.             src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/gsap.min.js"
  13.             integrity="sha512-cOH8ndwGgPo+K7pTvMrqYbmI8u8k6Sho3js0gOqVWTmQMlLIi6TbqGWRTpf1ga8ci9H3iPsvDLr4X7xwhC/+DQ=="
  14.             crossorigin="anonymous"
  15.             referrerpolicy="no-referrer"></script>
  16.         <script
  17.             defer
  18.             src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/ScrollTrigger.min.js"
  19.             integrity="sha512-AMl4wfwAmDM1lsQvVBBRHYENn1FR8cfOTpt8QVbb/P55mYOdahHD4LmHM1W55pNe3j/3od8ELzPf/8eNkkjISQ=="
  20.             crossorigin="anonymous"
  21.             referrerpolicy="no-referrer"></script>
  22.  
  23.         <link rel="stylesheet" href="style.css" />
  24.         <script defer src="app.js"></script>
  25.     </head>
  26.     <body>
  27.         <div class="wrapper">
  28.             <header>
  29.                 <div class="pin-container"> <!-- added this element -->
  30.                     <nav class="nav">
  31.                         <div class="nav__left">
  32.                             <a class="logo" href="">Logo</a>
  33.                         </div>
  34.  
  35.                         <div class="nav__right">
  36.                             <ul class="nav__list">
  37.                                 <li class="nav__item">
  38.                                     <a href="#" class="nav__link">About</a>
  39.                                 </li>
  40.                                 <li class="nav__item">
  41.                                     <a href="#" class="nav__link">Docs</a>
  42.                                 </li>
  43.                                 <li class="nav__item">
  44.                                     <a href="#" class="nav__link">Contact</a>
  45.                                 </li>
  46.                             </ul>
  47.                         </div>
  48.                     </nav>
  49.                 </div> <!-- end of pin-container -->
  50.             </header>
  51.  
  52.             <main>
  53.                 <section class="section-1">
  54.                     <h1>
  55.                         I have a problem in pinning the navbar using GSAP.
  56.                         I want the nav bar to be pinned when it reaches the top of the screen.
  57.                     </h1>
  58.                     <div>
  59.                         <h3>Question</h3>
  60.                         <ol>
  61.                             <li>How to pin the navbar using gsap? 😭</li>
  62.                         </ol>
  63.                     </div>
  64.                     <div>
  65.                         <button>CLICK ME</button>
  66.                         <button id="pin">Pin the nav bar</button>
  67.                     </div>
  68.                 </section>
  69.                 <section class="section-2">
  70.                
  71.  
  72.                
  73.  
  74. <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate et error impedit porro praesentium placeat d
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement