maloja / pico-twentytwenty
This Plugin adds the TwentyTwenty image comparison slider for Pico CMS
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:pico-plugin
pkg:composer/maloja/pico-twentytwenty
Requires
- php: >=5.3.6
- components/jquery: >=3.4
This package is auto-updated.
Last update: 2025-12-17 22:19:08 UTC
README
The further development of PicoCMS was discontinued a long time ago. This means that also this project has come to its end. The repository “maloja/pico-twentytwenty” will be removed in the near future. If you would like to continue using any useful lines of code from this repository, please copy them into your own project.
PicoTwentytwenty
This Plugin adds the Twentytwenty image comparison slider in Pico CMS. For further reading see also https://github.com/zurb/twentytwenty
Screenshots
Installation
Copy the files from Github https://github.com/maloja/pico-twentytwenty into your Pico CMS plugins folder plugins/PicoTwentyTwenty
or clone directly from Github in plugins/PicoTwentyTwenty
cd plugins
git clone https://github.com/maloja/pico-twentytwenty
or, if you installed Pico CMS with composer
composer require maloja/pico-twentytwenty
The installation via composer will automatically install the jQuery (see below).
Permissions
By default your Pico CMS installation will not permit access to javascript files in your vendor or plugins folders. Make sure yor'll grant access to these files by modifying the Pico CMS .htaccess file
# Permit direct access to jquery scripts
RewriteRule ^vendor/components/jquery.*\.(js)$ - [L,NC]
Usage
Add the following expression in your Markdown file:
(% imgcompare ( /path/to/image1.jpg, /path/to/image2.jpg ) %)
Dependencies
This plugin requires jQuery to run correctly. If PicoTwentytwenty is installed via composer, then jquery will be installed automatically. Otherwise, jQuery can also be installed manually and will usually be stored under /yourdomain/vendor/components/jquery. By default, Pico CMS does not allow access to jquery.js. The Pico .htaccess file must be adapted for this.
RewriteRule ^vendor/components/jquery.*\.(js)$ - [L,NC]
Then jQuery can be integrated into the Twig templates.
<script src="vendor/components/jquery/jquery.min.js"></script>