Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaptn3/merklise
https://github.com/kaptn3/merklise
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/kaptn3/merklise
- Owner: kaptn3
- Created: 2018-10-28T11:01:41.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-10-06T06:10:04.000Z (about 2 years ago)
- Last Synced: 2024-10-12T19:37:00.192Z (2 months ago)
- Language: HTML
- Homepage:
- Size: 6.33 MB
- Stars: 0
- Watchers: 3
- 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.