我目前正在嘗試將嵌入內容置於圖像和螢幕中心之間。為了實現這一目標,我利用 https://rss.app/ 將 Google 新聞的 NBA 部分嵌入到我的網站中。如果您需要 CSS 文件,請隨時詢問。我已經掙扎了一段時間,非常感謝您能提供的任何幫助。
<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" /> </head> <body> <nav class="navbar"> <div class="content"> <div class="logo"> <a href="home.html">Home</a> </div> <ul class="menu-list"> <div class="icon cancel-btn"> <i class="fas fa-times"></i> </div> <li><a href="home.html">Home</a></li> <li><a href="news.html">News</a></li> <li><a href="records.html">Records</a></li> <li><a href="games.html">Games</a></li> <li><a href="images.html">Images</a></li> </ul> <div class="icon menu-btn"> <i class="fas fa-bars"></i> </div> </div> </nav> <div class="banner"> <div style="margin-top: 1000;"> <rssapp-carousel id="8ywhL4ZjvQvQv5Zz"></rssapp-carousel> <script src="https://widget.rss.app/v1/carousel.js" type="text/javascript" async></script> </div> </div> <div class="about"> <script> const body = document.querySelector("body"); const navbar = document.querySelector(".navbar"); const bannerTitle = document.querySelector(".bannerTitle"); const menuBtn = document.querySelector(".menu-btn"); const cancelBtn = document.querySelector(".cancel-btn"); menuBtn.onclick = () => { navbar.classList.add("show"); menuBtn.classList.add("hide"); body.classList.add("disabled"); } cancelBtn.onclick = () => { body.classList.remove("disabled"); navbar.classList.remove("show"); menuBtn.classList.remove("hide"); } window.onscroll = () => { this.scrollY > 20 ? navbar.classList.add("sticky") : navbar.classList.remove("sticky"); this.scrollY > 20 ? bannerTitle.classList.add("sticky") : bannerTitle.classList.remove("sticky"); } </script> </body> </html>```
如果我理解正確的話,這是你想要的行為嗎?
https://jsfiddle.net/u2qtnLkv/
CSS:
請記住,您的標籤 缺少結束標籤。另請記住,
bannerTitle
類別未被使用,這可能會破壞請求它的 javascript。