Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Add effect according to scroll.

## Demo

- Document [https://yama-dev.github.io/js-scroll-effect-module/](https://yama-dev.github.io/js-scroll-effect-module/)
- SamplePage[https://yama-dev.github.io/js-scroll-effect-module/sample/](https://yama-dev.github.io/js-scroll-effect-module/sample/)
- Document -> [https://yama-dev.github.io/js-scroll-effect-module/](https://yama-dev.github.io/js-scroll-effect-module/)
- SamplePage -> [https://yama-dev.github.io/js-scroll-effect-module/sample/](https://yama-dev.github.io/js-scroll-effect-module/sample/)

<br>

Expand All @@ -34,18 +34,17 @@ Add effect according to scroll.
npm install --save-dev js-scroll-effect-module
```

``` javascript.
``` javascript
// import.
import SCROLL_EFFECT_MODULE from 'js-scroll-effect-module';
```

### Basic Standalone Usage

``` html
<link rel="stylesheet" href="./scroll-effect-module.css">
<script src="./js-scroll-effect-module"></script>
<script>
var ScrollEffectModule = new SCROLL_EFFECT_MODULE({ elem : '.effect_item' });
</script>
<script> new SCROLL_EFFECT_MODULE({ elem : '.effect_item' }); </script>
```

<br>
Expand Down
4 changes: 2 additions & 2 deletions dist/js-scroll-effect-module.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-scroll-effect-module",
"version": "0.1.1",
"description": "Add effect according to scroll.",
"version": "0.1.2",
"description": "Add effect at scroll.",
"keywords": [
"scroll",
"scroll effect",
Expand All @@ -26,8 +26,8 @@
"url": "https://github.com/yama-dev/js-scroll-effect-module"
},
"bugs": {
"url" : "https://github.com/yama-dev/js-scroll-effect-module/issues",
"email" : "tatsuya.yamamoto69@gmail.com"
"url": "https://github.com/yama-dev/js-scroll-effect-module/issues",
"email": "tatsuya.yamamoto69@gmail.com"
},
"devDependencies": {
"babel-cli": "^6.26.0",
Expand Down
Loading