function aos_help in Animate On Scroll 8
Same name and namespace in other branches
- 7 aos.module \aos_help()
Implements hook_help().
File
- ./
aos.module, line 11 - Integration with AOS library.
Code
function aos_help($path, $arg) {
switch ($path) {
case 'admin/help#aos':
return '<p>' . t('<a href="@aos" target="_blank">Animate On Scroll</a> is a small library to animate elements on your page as you scroll. It allows you to animate elements as you scroll down, and up. If you scroll back to top, elements will animate to it\'s previous state and are ready to animate again if you scroll down.', [
'@aos' => 'https://michalsnik.github.io/aos/',
]) . '</p>';
}
}