This document explains how to use and customize the animated arctic background for your streaming overlay.
##Overview
A winter-themed animated background with aurora borealis effects, falling snowflakes, and a snowy landscape. This background is designed to be used as a base layer beneath other transparent overlays for a complete winter streaming aesthetic.
To modify the color scheme of the background:
.arctic-background
CSS class and modify the background
property:
.arctic-background {
/* Change these gradient colors for a different sky effect */
background: linear-gradient(180deg, #a8d8e8 0%, #e8f4f8 100%);
}
.aurora
and .aurora-2
classes and adjust their background gradients:
.aurora {
/* Modify these colors for different aurora effects */
background: linear-gradient(180deg,
rgba(86, 207, 225, 0) 0%,
rgba(86, 207, 225, 0.1) 20%,
rgba(137, 255, 177, 0.2) 40%,
rgba(126, 206, 244, 0.1) 60%,
rgba(86, 207, 225, 0) 100%);
}
.snow-ground
class to change the ground appearance:
.snow-ground {
/* Change these colors for different ground effects */
background: linear-gradient(180deg, #e8f4f8 0%, #ffffff 100%);
}
@keyframes aurora-wave
and the animation property in .aurora
:
.aurora {
/* Change the '20s' value to adjust speed (smaller = faster) */
animation: aurora-wave 20s ease-in-out infinite alternate;
}
.aurora-2 {
/* Change the '15s' value to adjust speed */
animation: aurora-wave 15s ease-in-out infinite alternate-reverse;
}
/* Change these duration values (smaller = faster snowfall) */
.snowflake:nth-child(1) { animation-duration: 18s; }
.snowflake:nth-child(2) { animation-duration: 15s; }
/* and so on... */
<div class="snowflake" style="top: -5%; left: 5%;"></div>
Adjust the top
and left
values to change starting positions.
<div class="icicle" style="left: 2%; height: 35px;"></div>
Adjust the left
and height
values to change positioning and size.
<div class="distant-bear" style="bottom: 15%; left: 10%;"></div>
Adjust the bottom
and left
values to change positions.
This background is designed to work as a base layer. To use it with other overlays:
For best results, use with other overlays from this collection that have transparent backgrounds.
For more advanced customization, you can:
If you have any questions about customizing this overlay or encounter any issues, please open an issue in the GitHub repository.