我在NextJS中使用線性漸變創(chuàng)建了一個網格線框的背景。看起來,
<body className={"bg"}>
<motion.div
className="outer-circle"
variants={variants}
animate={cursorVariant}
>
<div className="cursor"></div>
</motion.div>
<NavBar />
<div className="max-w-[1000px] mx-auto py-2 px-3 mt-5">{children}</div>
</body>
& quotbg & quot類看起來像,
.bg {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
background-color: #f3f3f3;
background-image: linear-gradient(
to right,
rgba(223, 223, 223, 0.6) 1px,
transparent 1px
),
linear-gradient(to bottom, rgba(223, 223, 223, 0.6) 1px, transparent 1px);
background-size: 100px 100px;
}
但是當內容變多的時候。它不滾動,因為身體的位置是固定的。如何讓固定背景下的內容單獨滾動?任何想法將不勝感激。 bg看起來像,
下一篇fs讀取json