Skip to content

Commit

Permalink
Update document
Browse files Browse the repository at this point in the history
  • Loading branch information
souljungkim committed Feb 1, 2020
1 parent cb8ea37 commit b454a35
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 19 deletions.
24 changes: 14 additions & 10 deletions src/sjdoc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,27 +72,29 @@ For convenience, 1-1 code, which loads and creates a Library in the example, is
slideman.detect();
</script>
<body>
<div data-type="slideview" data-viewer="jmeetsz">
<div data-type="slideview" data-viewer="test-slider-index" style="width:300px; height:150px; border:1px solid black;">
<div data-type="index"></div>
<div data-type="storage">
<div data-slide>
<div data-type="title">안녕하세요</div>
<div>
안녕하니까 123
1번째 슬라이드<br/>
모바일 경우 왼쪽으로(<<) 쓸어보세요.
</div>
</div>
<div data-slide>
<div data-type="title">수고하세요</div>
<div>
안녕하니까 456
2번째 슬라이드
</div>
</div>
<div data-slide>
<div data-type="title">어서오세요</div>
<div>
안녕하니까 789
3번째 슬라이드<br/>
모바일 경우 오른쪽으로(>>) 쓸어보세요.
</div>
</div>
</div>
</div>
</div>
</body>
Expand All @@ -114,27 +116,29 @@ For convenience, 1-1 code, which loads and creates a Library in the example, is
slideman.detect();
</script>
<body>
<div data-type="slideview" data-viewer="jmeetsz">
<div data-type="slideview" data-viewer="test-slider-tap" style="width:350px; height:150px; border:1px solid black;">
<div data-type="tap"></div>
<div data-type="storage">
<div data-slide>
<div data-type="title">안녕하세요</div>
<div>
안녕하니까 123
1번째 슬라이드<br/>
모바일 경우 왼쪽으로(<<) 쓸어보세요.
</div>
</div>
<div data-slide>
<div data-type="title">수고하세요</div>
<div>
안녕하니까 456
2번째 슬라이드
</div>
</div>
<div data-slide>
<div data-type="title">어서오세요</div>
<div>
안녕하니까 789
3번째 슬라이드<br/>
모바일 경우 오른쪽으로(>>) 쓸어보세요.
</div>
</div>
</div>
</div>
</div>
</body>
Expand Down
22 changes: 13 additions & 9 deletions test/slideman-test-simple-example.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,56 +13,60 @@
slideman.detect();
</script>
<style>
div[data-type=slideview] { display:inline-block; width:350px; min-height:100px; border:1px solid black; float:left;}
div[data-type=slideview] { display:inline-block; width:350px; min-height:100px; border:1px solid black; }
</style>
</head>
<body>

<!-- Index Style SlideView -->
<div data-type="slideview" data-viewer="jmeetsz">
<div data-type="slideview" data-viewer="test-slider-index" style="width:350px; height:150px; border:1px solid black;">
<div data-type="index"></div>
<div data-type="storage">
<div data-slide>
<div data-type="title">안녕하세요</div>
<div>
안녕하니까 123
1번째 슬라이드<br/>
모바일 경우 왼쪽으로(<<) 쓸어보세요.
</div>
</div>
<div data-slide>
<div data-type="title">수고하세요</div>
<div>
안녕하니까 456
2번째 슬라이드
</div>
</div>
<div data-slide>
<div data-type="title">어서오세요</div>
<div>
안녕하니까 789
3번째 슬라이드<br/>
모바일 경우 오른쪽으로(>>) 쓸어보세요.
</div>
</div>
</div>
</div>

<!-- Tap Style SlideView -->
<div data-type="slideview" data-viewer="jmeetsz-2">
<div data-type="slideview" data-viewer="test-slider-tap" style="width:300px; height:150px; border:1px solid black;">
<div data-type="tap"></div>
<div data-type="storage">
<div data-slide>
<div data-type="title">안녕하세요</div>
<div>
안녕하니까 123
1번째 슬라이드<br/>
모바일 경우 왼쪽으로(<<) 쓸어보세요.
</div>
</div>
<div data-slide>
<div data-type="title">수고하세요</div>
<div>
안녕하니까 456
2번째 슬라이드
</div>
</div>
<div data-slide>
<div data-type="title">어서오세요</div>
<div>
안녕하니까 789
3번째 슬라이드<br/>
모바일 경우 오른쪽으로(>>) 쓸어보세요.
</div>
</div>
</div>
Expand Down

0 comments on commit b454a35

Please sign in to comment.