Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 985 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 985 Bytes

Animated Background Gradient

Description

This repository contains an HTML file that creates an animated background gradient. The gradient smoothly transitions between different colors, creating an eye-catching and dynamic visual effect.

Preview

VID-20231227-WA0034_1.gif

How to Use

  1. Clone this repository to your local machine or copy the HTML code.
  2. Open the index.html file in your web browser.
  3. Enjoy the animated background gradient!

Customization

You can customize the colors and appearance of the gradient by modifying the colors array in the JavaScript code. Adjust the RGB values to create your desired color scheme.

var colors = [
  [0, 0, 128],  // Dark Blue
  [255, 0, 255], // Pink
  [0, 128, 0],   // Green
  [30, 144, 255] // Dodger Blue
];

Feel free to experiment and make the gradient your own!