neosrulez / locomotivescroll
A Neos CMS package to use Locomotive Scroll (https://locomotivemtl.github.io/locomotive-scroll/)
Installs: 45
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:SCSS
Type:neos-package
Requires
- neos/neos: *
This package is not auto-updated.
Last update: 2024-11-22 20:52:58 UTC
README
A package to use Locomotive Scroll (https://locomotivemtl.github.io/locomotive-scroll/) in Neos.
Installation
The NeosRulez.LocomotiveScroll package is listed on packagist (https://packagist.org/packages/neosrulez/locomotivescroll) - therefore you don't have to include the package in your "repositories" entry any more.
Just run:
composer require neosrulez/locomotivescroll
Configuration
All settings from here: https://github.com/locomotivemtl/locomotive-scroll can be used:
NeosRulez: LocomotiveScroll: settings: smooth: true reloadOnContextChange: true scrollFromAnywhere: true
NodeType Mixin
Add the mixin to the superTypes of your content superType:
'Acme.Site:Component.AbstractContent': superTypes: 'Neos.Neos:Content': true 'NeosRulez.LocomotiveScroll:Mixin.LocomotiveScroll': true
Fusion component
All you have to do is wrap your AbstractContent with the Locomotive Wrapper:
prototype(Acme.Site:Component.AbstractContent) {
renderer = afx`
<NeosRulez.LocomotiveScroll:Wrapper>
{props.content}
</NeosRulez.LocomotiveScroll:Wrapper>
`
}
or use it like this:
prototype(Acme.Site:Component.Foo) {
renderer = afx`
<NeosRulez.LocomotiveScroll:Wrapper isScrollable="true" dataScrollSpeed="1" direction="horizontal">
<p>My awesome component</p>
</NeosRulez.LocomotiveScroll:Wrapper>
`
}
Author
- E-Mail: mail@patriceckhart.com
- URL: http://www.patriceckhart.com