Welcome to AnimateItNow β a creative, open-source hub for beautiful web UI components and animations!
Explore the Live Demo Β»
Report a Bug
Β·
Request a Feature
Login Form Animation | Button Hover Effects | Loading Animations |
---|---|---|
Smooth form transitions | Interactive hover effects | Creative loading states |
Modal Animations | Card Transitions | Navigation Effects |
---|---|---|
Elegant modal displays | Smooth card transitions | Animated navigation |

AnimateItNow empowers developers to create stunning, responsive UI animations with ease. Built for speed, creativity, and collaboration β it's your go-to hub for beautiful web motion.
- π Quick Start
- π Features & Demos
- π Installation & Setup
- π― Open Source Programs
- π€ How to Contribute
- π§ Project Structure
- π License
- A modern web browser (Chrome, Firefox, Safari, Edge)
- Basic knowledge of HTML, CSS, and JavaScript
- Git (for contribution)
- Clone the Repository
git clone https://github.com/itsAnimation/AnimateItNow.git cd AnimateItNow
Open the Project
-
Simply open index.html in your web browser
-
Or use a local server for better development: bash
Using Python
python -m http.server 8000
Using Node.js (if you have http-server installed)
npx http-server
Using PHP
php -S localhost:8000
Start Exploring!
- Browse templates in the gallery
- View source code for each animation
- Customize and experiment with effects
To start working with AnimateItNow locally, follow one of the options below based on your preference and environment.
- Clone the Repository
git clone https://github.com/itsAnimation/AnimateItNow.git
cd AnimateItNow
- Open the Project
- Simply open
index.html
in your favorite web browser by double-clicking the file or using:- macOS:
open index.html
- Windows:
start index.html
- Linux:
xdg-open index.html
- macOS:
Running a local server allows you to test animations properly and avoid issues related to browser security policies when loading local files.
Choose one of the following methods:
-
Using Python If you have Python installed:
python -m http.server 8000
Then open your browser and go to:
http://localhost:8000
-
Using Node.js If you have Node.js and
http-server
installed (install it globally if you don't):npm install -g http-server http-server
Then open your browser and go to the address shown in the terminal (usually
http://localhost:8080
). -
Using PHP If you have PHP installed:
php -S localhost:8000
Open your browser and go to:
http://localhost:8000
If you use Visual Studio Code:
- Install the Live Server extension.
- Open the project folder in VS Code.
- Right-click on
index.html
and select Open with Live Server. - Your default browser will launch and display the project.
- Browse through the templates folder to explore different animations.
- Open HTML files in the templates folder to see examples.
- Modify CSS and JavaScript files in
css/
andjs/
directories to customize animations. - Preview changes live if using a local server or Live Server.
π¨ Animation Categories\
- Button Animations
- Hover effects (glow, bounce, fill, etc.)
- Click animations (ripple, press, etc.)
- Loading states
- Form Animations
- Input field animations
- Validation effects
- Submit button transitions
- Loading Animations
- Spinners and loaders
- Skeleton screens
- Progress indicators
- Modal & Popup Effects
- Entrance/exit animations
- Background overlays
- Interactive modals
πΉ Hover Effects Gallery Effect Preview Code Example
- Blur https://via.placeholder.com/150/6C63FF/FFFFFF?text=Blur class="blur-effect"
- Skew https://via.placeholder.com/150/FF6B6B/FFFFFF?text=Skew class="skew-effect"
- Bounce https://via.placeholder.com/150/4ECDC4/FFFFFF?text=Bounce class="bounce-effect"
- Shadow Pulse https://via.placeholder.com/150/45B7D1/FFFFFF?text=Shadow class="shadow-pulse"
css
/* Example: Combined effects */ .animated-button { transition: all 0.3s ease; }
.animated-button:hover { transform: scale(1.05) skewX(-5deg); filter: blur(0.5px); animation: bounce 0.5s ease; }
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
Please read our CONTRIBUTING.md for detailed guidelines on our workflow, issue reporting, and pull request process.
- β Add your animation to the correct category folder
- β Include a preview GIF (300x200 pixels)
- β Add comments to your CSS/JavaScript code
- β Test across different browsers
- β Update the templates gallery page
- β Follow the existing code style
π Good First Issues
- Look for issues labeled good-first-issue or beginner-friendly to start contributing!
Benefits for Contributors:
- πLearn from experienced mentors
- π€Collaborate with developers worldwide
- πReceive certificates and swag
- πGet recognition for your work
- πΌBuild your portfolio with real-world projects
AnimateItNow/
β
ββ .github/ # GitHub configuration files (workflows, templates)
β ββ ISSUE_TEMPLATE/ # Issue templates
β ββ workflows/ # GitHub Actions workflows
β ββ ISSUE_TEMPLATE.md # Default issue template
β ββ PULL_REQUEST_TEMPLATE.md # Pull request template
β
ββ .vscode/ # VSCode settings
β ββ settings.json # Workspace settings
β
ββ ai-assistant/ # AI assistant related files
β ββ chatbot-data.json
β
ββ index.html # Main entry HTML page
ββ script.js # Main JS file
ββ styles.css # Main CSS file
β
ββ background_templates/ # Background templates for animations
β ββ demo/ # Demo templates
β ββ blue_wave_background.html
β ββ dark_starry_background.html
β
ββ images/ # Images used across templates
β
ββ src/css/ # Additional CSS files
β
ββ svg/ # SVG assets
β
ββ templates/ # Pre-built HTML templates
β ββ sample-templates/
β
ββ HTML Templates # Individual HTML pages with effects
β ββ 404.html
β ββ Animation.html
β ββ CardHoverEffects.html
β ββ Coming_Soon_Landing_Page.html
β ββ Flip.html
β ββ LoadingSpinner.html
β ββ LoginFormGlassMorphism.html
β ββ Progress_Bar.html
β ββ Side.html
β ββ Testinomials_Sliders.html
β ββ Type-animation.html
β ββ Wave.html
β ββ accordian.html
β ββ animated-btn.html
β ββ button.html
β ββ card_hover.html
β ββ carousel.html
β ββ checkboxes.html
β ββ code_playground.html
β ββ contact.html
β ββ display.html
β ββ faq_acc.html
β ββ feature.html
β ββ forgot-password.html
β ββ glassmorphism.html
β ββ hamburger-menu.html
β ββ hero.html
β ββ login.html
β ββ modal.html
β ββ navbar.html
β ββ neumorphic.html
β ββ page_not_found_template.html
β ββ price_plan.html
β ββ professional_temp.html
β ββ profile_card.html
β ββ quotes.html
β ββ register.html
β ββ scrollingAnimations.html
β ββ social-share-buttons.html
β ββ text_effects_anim.html
β ββ tilt-card.html
β ββ timer.html
β ββ toggles-and-checkboxes.html
β
ββ Additional Config & Docs
β ββ .DS_Store
β ββ CARD_SYSTEM_DOCS.md
β ββ CODE_OF_CONDUCT.md
β ββ CONTRIBUTING.md
β ββ LEARN.md
β ββ LICENSE
β ββ README.md
β
ββ Other HTML, CSS, JS
β ββ about.html
β ββ blog.html
β ββ components.css
β ββ components.html
β ββ components.js
β ββ contact.html
β ββ contributors.html
β ββ desktop.ini
β ββ documentation.html
β ββ editor.css
β ββ editor.html
β ββ editor.js
β ββ favicon.png
β ββ feedback.html
β ββ generate-icons.js
β ββ generator.css
β ββ generator.html
β ββ generator.js
β ββ glassmorphismstyle.css
β ββ index.css
β ββ index.html
β ββ index.js
β ββ leaderboard.html
β ββ loginpage.html
β ββ manifest.json
β ββ nav.html
β ββ navbar-theme.js
β ββ navbar_script.js
β ββ navbar_styles.css
β ββ opaque_hover.html
β ββ package-lock.json
β ββ playground.html
β ββ pomodoro.css
β ββ pomodoro.html
β ββ pomodoro.js
β ββ privacy.html
β ββ privacyPolicy.html
β ββ script.js
β ββ signup.css
β ββ signup.html
β ββ sitemap.html
β ββ styles.css
β ββ support.html
β ββ templates.css
β ββ templates.html
β ββ templates.js
β ββ test_card_system.html
β ββ theme-manager.js
β ββ update-html-files.js
β ββ vercel.json
π± Browser Compatibility
- β Chrome 60+
- β Firefox 55+
- β Safari 12+
- β Edge 79+
π¬ Need Help? π¬ Community Support
- Discussions: GitHub Discussions
- Issues: Report Bugs
- Email: Your Email
π Learning Resources
- CSS Animations Guide
- JavaScript Animation Basics
- GSAP Animation Library
This project is licensed under the MIT License .
π Our Amazing Contributors
Made with β€ by Anuj and Contributors