Register method function
A method can be registered within a Scope by passing a String
name and a Function
to the Scope's add()
method. Once registered, the method becomes available on the Scope instance's methods
object. This allows the method to be called from outside the Scope while maintaining its execution context within the Scope.
scope.add('methodName', methodFunction); // Register the method
scope.methods.methodName(); // Execute the method
Method arguments
Name | Type |
---|---|
...args | Any |
Register method function code example
import { utils, animate, createScope } from 'animejs';
const scope = createScope({
mediaQueries: { isSmall: '(max-width: 200px)' },
})
.add(self => {
/* Registering the method inside the scope allows access to the scope itself */
self.add('onClick', (e) => {
const { clientX, clientY } = e;
const { isSmall } = self.matches;
animate('.square', {
rotate: isSmall ? '+=360' : 0,
x: isSmall ? 0 : clientX - (window.innerWidth / 2),
y: isSmall ? 0 : clientY - (window.innerHeight / 2),
duration: isSmall ? 750 : 400,
});
});
utils.set(document.body, {
cursor: self.matches.isSmall ? 'alias' : 'crosshair'
});
});
/* Methods can be called outside the scope */
document.addEventListener('click', scope.methods.onClick);
<div class="iframe-content resizable">
<div class="large centered row">
<div class="col">
<div class="square"></div>
</div>
</div>
</div>