iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 29
1
自我挑戰組

語法改革!零基礎新手也能讀懂的JS!系列 第 29

Day29 語法改革!零基礎新手也能讀懂的JS - JS30-26 Stripe Follow Along Nav

  • 分享至 

  • xImage
  •  

JS30官網
今天來講解第二十六天吧!

  <h2>Cool</h2>
  <nav class="top">
    <div class="dropdownBackground">
      <span class="arrow"></span>
    </div>

    <ul class="cool">
      <li>
        <a href="#">About Me</a>
        <div class="dropdown dropdown1">
          <div class="bio">
            <img src="https://logo.clearbit.com/wesbos.com">
            <p>Wes Bos sure does love web development. He teaches things like JavaScript, CSS and BBQ. Wait. BBQ isn't part of web development. It should be though!</p>
          </div>
        </div>
      </li>
      <li>
        <a href="#">Courses</a>
        <ul class="dropdown courses">
          <li>
            <span class="code">RFB</span>
            <a href="https://ReactForBeginners.com">React For Beginners</a>
          </li>
          <li>
            <span class="code">ES6</span>
            <a href="https://ES6.io">ES6 For Everyone</a>
          </li>
          <li>
            <span class="code">NODE</span>
            <a href="https://LearnNode.com">Learn Node</a>
          </li>
          <li>
            <span class="code">STPU</span>
            <a href="https://SublimeTextBook.com">Sublime Text Power User</a>
          </li>
          <li>
            <span class="code">WTF</span>
            <a href="http://Flexbox.io">What The Flexbox?!</a>
          </li>
          <li>
            <span class="code">GRID</span>
            <a href="https://CSSGrid.io">CSS Grid</a>
          </li>
          <li>
            <span class="code">LRX</span>
            <a href="http://LearnRedux.com">Learn Redux</a>
          </li>
          <li>
            <span class="code">CLPU</span>
            <a href="http://CommandLinePowerUser.com">Command Line Power User</a>
          </li>
          <li>
            <span class="code">MMD</span>
            <a href="http://MasteringMarkdown.com">Mastering Markdown</a>
          </li>
        </ul>
      </li>
      <li>
        <a href="#">Other Links</a>
        <ul class="dropdown dropdown3">
          <li><a class="button" href="http://twitter.com/wesbos">Twitter</a></li>
          <li><a class="button" href="http://facebook.com/wesbos.developer">Facebook</a></li>
          <li><a class="button" href="http://wesbos.com">Blog</a></li>
          <li><a class="button" href="http://wesbos.com/courses">Course Catalog</a></li>
        </ul>
      </li>
    </ul>
  </nav>

能看到上方的html裡有一個大<ul>包著三個<li>,我們必須對這三個<li>做監聽事件,所以當滑鼠移到不是<li>的時候<li>會消失!

所以我們先選取到這三個元素

  const triggers = document.querySelectorAll('.cool > li');
  const background  = document.querySelector('.dropdownBackground');
  const nav  = document.querySelector('.top');
  triggers.forEach(trigger => trigger.addEventListener('mouseenter', handleEnter));
  triggers.forEach(trigger => trigger.addEventListener('mouseleave', handleLeave));

並且讓這三個<li>都綁定滑鼠進入以及離開的事件我們先處理滑鼠進入的時候要顯示下方白色區塊,當沒有在<li>的時候就會關掉下方白塊

  function handleEnter() {
    this.classList.add('trigger-enter');
    setTimeout(() => this.classList.contains('trigger-enter') && this.classList.add('trigger-enter-active'), 150);
    background.classList.add('open');

在我們的觸發mouseenter的函式,我們要完成 CSS style更換,作者已經有將要觸發的class寫在檔案裡,我們要做的就是移除或是新增class,並且在出現白色區塊的時候,透過延遲setTimeOut來做到延遲的效果,延遲一下子在將白色區塊內的內容顯示出來,因此要加上兩個 class ,第一個先將 display:none 拿掉,然後再透過setTimeOut把透明度拿掉,顯示出文字內容! 最後如果滑鼠移開了移除整個白色區塊。

    const dropdown = this.querySelector('.dropdown');
    const dropdownCoords = dropdown.getBoundingClientRect();
    const navCoords = nav.getBoundingClientRect();

    const coords = {
      height: dropdownCoords.height,
      width: dropdownCoords.width,
      top: dropdownCoords.top - navCoords.top,
      left: dropdownCoords.left - navCoords.left
    };

在接下來我們抓到有.dropdown這個class的元素,並且抓到透過.getBoundingClientRect()抓到他以及navheightwidthtopleft,要刪除到nav的top以及left是為了讓白色區塊準確的貼在li下方。

    background.style.setProperty('width', `${coords.width}px`);
    background.style.setProperty('height', `${coords.height}px`);
    background.style.setProperty('transform', `translate(${coords.left}px, ${coords.top}px)`);
  }

最後指定白色區塊的寬高等於原本dropdown的寬高就可以了!

  function handleLeave() {
    this.classList.remove('trigger-enter', 'trigger-enter-active');
    background.classList.remove('open');
  }

最後寫handleLeave滑鼠離開的時候刪掉這兩個class並且讓選單消失!

今天就講解到這邊,謝謝大家!


上一篇
Day28 語法改革!零基礎新手也能讀懂的JS - JS30-16 Mouse Move Shadow
下一篇
Day30 語法改革!零基礎新手也能讀懂的JS - 最終回!
系列文
語法改革!零基礎新手也能讀懂的JS!30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言