https://github.com/kaptn3/merklise
https://github.com/kaptn3/merklise
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kaptn3/merklise
- Owner: kaptn3
- Created: 2018-10-28T11:01:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-10-06T06:10:04.000Z (over 3 years ago)
- Last Synced: 2025-06-17T13:52:44.117Z (about 1 year ago)
- Language: HTML
- Homepage:
- Size: 6.33 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Merklize
## Usage
### Installation
Install the bundle dependencies:
```bundle install```
Start Jekyll server:
```bundle exec jekyll serve```
Access:
## Slider
For activate slider work you should add classes `slide` and `another-class` for each block slide and add class `slide_visible` for first slide. For example:
```html
```
And add buttons in div with other class and buttons with class `carousel-btns__btn` (for first button add class `carousel-btns__btn_active`):
```html
```
In `assets/js/main.js` in variable `slidersClassNames` add two classes - slide's class and wrapper for buttons class:
```javascript
const slidersClassNames = [
['class', 'div__carousel-btn']
]
```
That's all.