如何创建:滚动时的背景渐变
学习如何在滚动时创建渐变背景色。
背景渐变
如何创建滚动时的渐变背景
创建一个从顶部开始的线性渐变背景色。颜色从蓝绿色渐变到蓝色:
body {
height: 3000px; /* Used to enable scrolling */
background: linear-gradient(55deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 85%);
}
学习如何在滚动时创建渐变背景色。
创建一个从顶部开始的线性渐变背景色。颜色从蓝绿色渐变到蓝色:
body {
height: 3000px; /* Used to enable scrolling */
background: linear-gradient(55deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 85%);
}