各位開發者大家好!我很高興展示我的最新項目:推薦滑桿。該專案是增強您使用 JavaScript 建立互動式動態 Web 元件的技能的好方法。無論您是剛起步還是希望為您的產品組合添加新功能,此推薦滑桿專案都提供了深入研究前端開發的絕佳機會。
推薦滑桿是一個基於網絡的應用程序,允許用戶使用下一個和上一個按鈕瀏覽各種推薦。此專案展示如何建立互動式使用者介面、使用 JavaScript 管理狀態以及透過平滑過渡增強使用者體驗。
以下是專案結構的快速瀏覽:
Testimonials-Slider/ ├── index.html ├── style.css └── script.js
要開始該項目,請按照以下步驟操作:
複製儲存庫:
git clone https://github.com/abhishekgurjar-in/Testimonials-Slider.git
開啟專案目錄:
cd Testimonials-Slider
運行項目:
index.html 檔案提供了推薦滑桿的基本結構,包括推薦內容和導航按鈕。這是一個片段:
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Testimonials Slider</title> <link rel="stylesheet" href="style.css"> <script src="script.js" defer></script> <div class="container"> <div class="box-1" id="testimonial-1"> <div class="text"> <h1> “ If you want to lay the best foundation possible I’d recommend taking this course. The depth the instructors go into is incredible. I now feel so confident about starting up as a professional developer. ” </h1> <div class="name"> <h3>John Tarkpor</h3> <h4>Junior Front-end Developer</h4> </div> </div> <div class="image"> <img src="./images/image-john.jpg" alt="John's Testimonial"> <div class="button"> <img src="./images/icon-prev.svg" id="prev-1" alt="建立一個推薦滑桿網站"> <img src="./images/icon-next.svg" id="next-1" alt="Next"> </div> </div> </div> <!-- Additional testimonials here --> </div> <div class="footer"> <p>Made with ❤️ by Abhishek Gurjar</p> </div>
style.css 檔案設定推薦滑桿的樣式,提供現代且使用者友善的佈局。以下是一些關鍵樣式:
* { box-sizing: border-box; } body { font-family: Inter, sans-serif; margin: 0; padding: 0; } .container { width: 100%; height: 90vh; background: url(./images/pattern-curve.svg) no-repeat fixed left bottom; display: flex; align-items: center; justify-content: center; } .box-1 { width: 70%; height: 70%; background-color: transparent; display: none; /* Hide all testimonials initially */ } #testimonial-1 { display: flex; /* Display the first testimonial */ } /* Additional styles */
script.js 檔案管理用於瀏覽推薦和處理使用者互動的邏輯。這是一個片段:
document.addEventListener("DOMContentLoaded", function () { const testimonials = document.querySelectorAll(".box-1"); let currentIndex = 0; const showTestimonial = (index) => { testimonials.forEach((testimonial, i) => { testimonial.style.display = i === index ? "flex" : "none"; }); }; document.getElementById("next-1").addEventListener("click", () => { currentIndex = (currentIndex + 1) % testimonials.length; showTestimonial(currentIndex); }); document.getElementById("prev-1").addEventListener("click", () => { currentIndex = (currentIndex - 1 + testimonials.length) % testimonials.length; showTestimonial(currentIndex); }); // Additional JavaScript logic });
您可以在此處查看推薦滑桿的現場示範。
建立此推薦滑桿是一次引人入勝的體驗,它加深了我對 JavaScript 以及如何創建動態、互動式 Web 元件的理解。我希望這個專案能夠激發您更多地探索 JavaScript 並提高您的 Web 開發技能。快樂編碼!
這個專案是我在 Web 開發方面持續學習之旅的一部分,專注於創建互動式使用者介面。
以上是建立一個推薦滑桿網站的詳細內容。更多資訊請關注PHP中文網其他相關文章!