This widget was created specifically for easy installation on any page and does not require any additional dependencies. It bases on usual html, js and css installed in all modern browsers. The initialization of the widget is in the background and does not appear at the page load speed. User email validation based on default html5 email validation
Insert this code anywhere on the page, where you want to display the widget
<div class="jlc-wrapper"></div>
Get jlcwidget.css
and jlcwidget.js
files in the dist
folder and put it in your template folder on the server.
Replace PATH_TO_TEMPLATE
in the example below with your theme template path and insert it after <head>
and before </body>
tag anywhere in your theme template.
<script async src="PATH_TO_TEMPLATE/jlcwidget.js"></script>
<link rel="stylesheet" href="PATH_TO_TEMPLATE/jlcwidget.css" media="none" onload="if(media!='all')media='all'">
You can customize default button label or registration hoster.
To do this, add to <div class="jlc-wrapper"></div>
next attributes:
data-text
- main button labeldata-tx-success
- succes textdata-tx-error
- error textdata-key
- hoster domain
<div class="jlc-wrapper" data-text="GET STARTED FOR FREE" data-tx-success="CHECK YOUR EMAIL" data-tx-error="An error has occurred, please try again later" data-key="jelastichosting.nl"></div>
Also you can edit default label and hoster in the assets/js/jlcwidget.js
file in "main variables" part
// main variables
const jlc_button_text = jlcWrapper.getAttribute('data-text') || 'GET STARTED FOR FREE',
jlc_text_error = jlcWrapper.getAttribute('data-tx-error') || 'An error has occurred, please try again later',
jlc_text_success = jlcWrapper.getAttribute('data-tx-success') || 'CHECK YOUR EMAIL',
jlc_hoster_domain = jlcWrapper.getAttribute('data-key') || 'jelastichosting.nl';
You can customise this widget with build system based on Gulp with SCSS preprocessor
- CSS Autoprefixing
- Built-in preview server with BrowserSync
- Compile Sass with libsass
- Lint and minifyscripts
- Image optimization
Requires Node.js v6+ and Gulp v4+ to run.
- Install Gulp:
npm install gulp --global
- Clone localy
git clone [email protected]:VitaliiAntoniukM/jelastic-widget.git
- Go to project folder
cd jelastic-widget
- Install dependencies
npm install -d
- Run
gulp serve
to start the server and watch for changes - Run
gulp default
to build for production environments
You can change CSS in the assets/css/jlcwidget.scss
file, for example default variables
$color-blue : #0088fb; // default color (blue)
$color-green : #00bea7; // default color for green button
$color-gray : #efefef;
$color-medium : #6b758a;
$color-dark : #5e6981;
$color-red : red; // default error color
$bdrs: 10px; // button border radius
$width: 280px; // default button size (if you change it, pay attention to font-size of the `.jlc-btn` and `.jlc-input` selectors)
$font-family: 'Open Sans', sans-serif;
After build in the dist
folder you will have
index.html
example with widget initialization selectorjlcwidget.js
minified JavaScriptjlcwidget.css
minified CSS
For the best performance all images saved in the SVG format, optimized with svgomg service and included to the CSS/SCSS with BASE64 technology via base64encode.org
Non converted images you can find in assets/img/
folder