Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kaptn3/merklise


https://github.com/kaptn3/merklise

Last synced: about 1 month ago
JSON representation

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


I'm content of slide!


I'm content of slide!


I'm content of slide!

```

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.