Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liip/animate-blocks-wordpress-plugin
Animate Gutenberg blocks plugin for WordPress
https://github.com/liip/animate-blocks-wordpress-plugin
gutenberg gutenberg-blocks wordpress wordpress-plugin
Last synced: 3 months ago
JSON representation
Animate Gutenberg blocks plugin for WordPress
- Host: GitHub
- URL: https://github.com/liip/animate-blocks-wordpress-plugin
- Owner: liip
- Created: 2019-03-20T06:08:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T18:15:42.000Z (almost 2 years ago)
- Last Synced: 2024-07-31T01:46:14.032Z (3 months ago)
- Topics: gutenberg, gutenberg-blocks, wordpress, wordpress-plugin
- Language: JavaScript
- Size: 5.07 MB
- Stars: 18
- Watchers: 8
- Forks: 3
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Animate Blocks - Animate Gutenberg blocks plugin for WordPress
[![Build Status](https://travis-ci.org/liip/animate-blocks-wordpress-plugin.svg?branch=master)](https://travis-ci.org/liip/animate-blocks-wordpress-plugin)
Animate Gutenberg blocks when they scroll into view.
* Works with all existing Gutenberg blocks
* Choose from 27 different animations
* Configure animation with custom delays, offsets and durations
* Based on [AOS Animate On Scroll Library](http://michalsnik.github.io/aos/)![Animate Blocks Demo](https://raw.githubusercontent.com/liip/animate-blocks-wordpress-plugin/master/assets/github/animate-blocks-demo.gif)
## JavaScript Filters
### animateBlocks.defaultOptions
Change default options.
#### Usage:
```javascript
function myDefaultOptions( defaultOptions ) {
// Change default animation to 'flip-up'
defaultOptions.animation = 'flip-up';
return defaultOptions;
}
wp.hooks.addFilter( 'animateBlocks.defaultOptions', 'myplugin/animate-blocks/defaultOptions', myDefaultOptions );
```#### Parameters:
* `defaultOptions` (object) Object with the following attributes
* `animation` (string)
* `offset` (number)
* `delay` (number)
* `duration` (number)
* `easing` (string)
* `once` (boolean)
* `mirror` (boolean)
* `anchorPlacement` (string)### animateBlocks.anchorPlacementOptions
Modify anchor placement options.
#### Usage:
```javascript
function myAnchorPlacementOptions( anchorPlacementOptions ) {
// Modify anchorPlacementOptions here
return anchorPlacementOptions;
}
wp.hooks.addFilter( 'animateBlocks.anchorPlacementOptions', 'myplugin/animate-blocks/anchorPlacementOptions', myAnchorPlacementOptions );
```#### Parameters:
* `anchorPlacementOptions` (array) Array with anchor placement options
### animateBlocks.animationOptions
Modify animation options.
#### Usage:
```javascript
function myAnimationOptions( animationOptions ) {
// Modify animationOptions here
return animationOptions;
}
wp.hooks.addFilter( 'animateBlocks.animationOptions', 'myplugin/animate-blocks/animationOptions', myAnimationOptions );
```#### Parameters:
* `animationOptions` (array) Array with animation options
### animateBlocks.easingOptions
Modify easing options.
#### Usage:
```javascript
function myEasingOptions( easingOptions ) {
// Modify easingOptions here
return easingOptions;
}
wp.hooks.addFilter( 'animateBlocks.easingOptions', 'myplugin/animate-blocks/easingOptions', myEasingOptions );
```#### Parameters:
* `easingOptions` (array) Array with easing options
## PHP Filters
### animate_blocks_load_aos
Enable or disable loading of AOS library.
#### Usage:
```php
function my_plugin_disable_load_aos( $load_aos ) {
$load_aos = false;
return $load_aos;
}
add_filter( 'animate_blocks_load_aos', 'my_plugin_disable_load_aos' );
```#### Parameters:
* `$enable_aos` (boolean) If true AOS will be loaded by the plugin.
## Developer information
### Installation
1. Clone this repo
1. Install composer dependencies
```
$ curl -s https://getcomposer.org/installer | php
$ php composer.phar install
$ vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs
```1. Install Node dependencies
```
$ npm install
```### Compile assets
This project was bootstrapped with [Create Guten Block](https://github.com/ahmadawais/create-guten-block).
#### `npm start`
- Use to compile and run the block in development mode.
- Watches for any changes and reports back any errors in your code.#### `npm run build`
- Use to build production code for your block inside `dist` folder.
- Runs once and reports back the gzip file sizes of the produced code.#### `npm run eject`
- Use to eject your plugin out of `create-guten-block`.
- Provides all the configurations so you can customize the project as you want.
- It's a one-way street, `eject` and you have to maintain everything yourself.
- You don't normally have to `eject` a project because by ejecting you lose the connection with `create-guten-block` and from there onwards you have to update and maintain all the dependencies on your own.### Extract labels
To extract the labels and generate the `languages/animate-blocks.pot` file run the following command:
```
$ curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
$ php wp-cli.phar i18n make-pot . languages/animate-blocks.pot
```