Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miniMAC/magic
CSS3 Animations with special effects
https://github.com/miniMAC/magic
animation css css3 css3-animations gulp magic npm yarn
Last synced: about 1 month ago
JSON representation
CSS3 Animations with special effects
- Host: GitHub
- URL: https://github.com/miniMAC/magic
- Owner: miniMAC
- License: mit
- Created: 2013-06-12T21:12:04.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-08-23T21:08:20.000Z (over 2 years ago)
- Last Synced: 2024-11-11T07:09:18.364Z (about 1 month ago)
- Topics: animation, css, css3, css3-animations, gulp, magic, npm, yarn
- Language: SCSS
- Homepage: https://www.minimamente.com/project/magic/
- Size: 607 KB
- Stars: 8,449
- Watchers: 288
- Forks: 1,180
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-star - magic
- Awesome-CSS-Resources - magic animations:
- awesome-web-animation - Magic - CSS3 Animations with special effects. (CSS)
- awesome-star-libs - miniMAC / magic
README
:tophat: magic
---------------CSS3 Animations with special effects. **(→ 3.1 kB gzip)**
## Demo
Checkout the demo for the animations [here](https://www.minimamente.com/project/magic/)
## **Table of Contents**
- [Installation](#installation)
- [Getting Started](#getting-started)
- [Usage with JavaScript](#usage-with-javascript)
- [Usage with jQuery](#usage-with-jquery)
- [HTML & CSS tips](#html--css-tips)
- [:tada: Gulp and SCSS (SASS) compiling](#tada-gulp-and-scss-sass-compiling)
- [:white_check_mark: Browser Support](#white_check_mark-browser-support)## Installation
**GitHub Package Registry** - [Package url](https://github.com/miniMAC/magic/packages/24129)
```bash
npm install @minimac/magic.css
```**NPM** - [Package url](https://www.npmjs.com/package/magic.css)
```bash
npm i magic.css
```**YARN** - [Package url](https://yarnpkg.com/en/package/magic.css)
```bash
yarn add magic.css
```## Getting Started
Include the file **magic.css** or include the minified version **magic.min.css**
```html
```
or
```html
```
## Usage with JavaScript
This is a sample code for on hover effect with **JavaScript**.
First, Include the class `magictime` and then a desired animation class.
```js
const selector = document.querySelector('.yourdiv')
selector.classList.add('magictime', 'puffIn')
```If you want to load the animation after certain time, you can use this example:
```js
//set timer to 5 seconds, after that, load the magic animation
function myFunction() {
const selector = document.querySelector('.yourdiv')
selector.classList.add('magictime', 'puffIn')
}
setTimeout(myFunction, 5000);
```If you want to load the animation after certain time but with an infinite loop, you can use this example:
```js
//set timer to 3 seconds, after that, load the magic animation and repeat forever
function myFunction() {
const selector = document.querySelector('.yourdiv')
selector.classList.add('magictime', 'puffIn')
}
setInterval(myFunction, 3000);
```## Usage with jQuery
This is a sample code for on hover effect with jQuery.
First, Include the class `magictime` and then the desired animation class.
```js
$('.yourdiv').hover(function () {
$(this).addClass('magictime puffIn');
});
```If you want to load the animation after certain time, you can use this example:
```js
//set timer to 5 seconds, after that, load the magic animation
setTimeout(function(){
$('.yourdiv').addClass('magictime puffIn');
}, 5000);
```If you want to load the animation after certain time but with infinite loop, you can use this example:
```js
//set timer to 3 seconds, after that, load the magic animation and repeat forever
setInterval(function(){
$('.yourdiv').toggleClass('magictime puffIn');
}, 3000 );
```
## HTML & CSS tipsYou can **change the time** of the animation by setting the class `magictime` for example:
```css
.magictime {
-webkit-animation-duration: 3s;
animation-duration: 3s;
}
```**Default** CSS timing is:
```css
.magictime {
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
```If you want to assign the **timing to a specific animation**, you can use the following code *(use 2 class)*:
```css
.magictime.magic {
-webkit-animation-duration: 10s;
animation-duration: 10s;
}
```## Animation Classes
| MAGIC EFFECTS | BLING | STATIC EFFECTS | STATIC EFFECTS OUT | PERSPECTIVE | ROTATE |
|---------------|-----------|---------------------|--------------------|------------------------|-------------|
| magic | puffIn | openDownLeft | openDownLeftOut | perspectiveDown | rotateDown |
| twisterInDown | puffOut | openDownRight | openDownRightOut | perspectiveUp | rotateUp |
| twisterInUp | vanishIn | openUpLeft | openUpLeftOut | perspectiveLeft | rotateLeft |
| swap | vanishOut | openUpRight | openUpRightOut | perspectiveRight | rotateRight |
| | | openDownLeftReturn | | perspectiveDownReturn | |
| | | openDownRightReturn | | perspectiveUpReturn | |
| | | openUpLeftReturn | | perspectiveLeftReturn | |
| | | openUpRightReturn | | perspectiveRightReturn | || SLIDE | MATH | TIN | BOMB | BOING | ON THE SPACE |
|------------------|-----------|-------------|--------------|--------------|---------------|
| slideDown | swashOut | tinRightOut | bombRightOut | boingInUp | spaceOutUp |
| slideUp | swashIn | tinLeftOut | bombLeftOut | boingOutDown | spaceOutRight |
| slideLeft | foolishIn | tinUpOut | | | spaceOutDown |
| slideRight | holeOut | tinDownOut | | | spaceOutLeft |
| slideDownReturn | | tinRightIn | | | spaceInUp |
| slideUpReturn | | tinLeftIn | | | spaceInRight |
| slideLeftReturn | | tinUpIn | | | spaceInDown |
| slideRightReturn | | tinDownIn | | | spaceInLeft |:tada: Gulp and SCSS (SASS) compiling
---------------If you want to customize the CSS files, now you will have the chance. For example, if you want to include only certain animations, you will have to go to this file:
```html
assets/scss/magic.scss
```Comment or uncomment your desired file and run from terminal the following commands:
```bash
npm install
```and last command:
```bash
gulp
```**Automatically** this generate the new files!
:white_check_mark: Browser Support
---------------**Browser** | Chrome | Firefox | Safari | iOS Safari | Opera | Android | Android Chrome | IE | Opera Mini
--- | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---:
**Version** | 31+ | 31+ | 7+ | 7.1+ | 27+ | 4.1+ | 42+ | 10+ | :x: