├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demo ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ └── font │ │ └── glyphicons-halflings-regular.ttf ├── css │ ├── sample.css │ ├── style.css │ └── theme.css ├── html │ ├── sample001.html │ ├── sample002.html │ ├── sample003.html │ └── sample004.html ├── img │ ├── character_0001.png │ ├── favicon.ico │ ├── icon_pointer.png │ ├── icon_social_circle_sp.png │ ├── icon_social_s_sp.png │ ├── main_logo.png │ ├── pic_coming_soon.png │ ├── sample001 │ │ ├── character_0001.png │ │ ├── character_0002.png │ │ ├── character_0003.png │ │ └── screen_shot.png │ ├── sample002 │ │ ├── character_0001.png │ │ ├── character_0002.png │ │ └── screen_shot.png │ ├── sample003 │ │ └── screen_shot.png │ ├── sample004 │ │ ├── bg_main.jpg │ │ └── screen_shot.png │ ├── screen_shot.png │ └── screen_shot_ogp.png ├── index.html └── js │ └── message_view.js ├── dist ├── message_view.js └── message_view.min.js ├── gulpfile.js ├── package.json └── src ├── css ├── sample.css ├── style.css └── theme.css ├── html ├── index.html ├── sample001.html ├── sample002.html ├── sample003.html └── sample004.html ├── img ├── character_0001.png ├── favicon.ico ├── icon_pointer.png ├── icon_social_circle_sp.png ├── icon_social_s_sp.png ├── main_logo.png ├── pic_coming_soon.png ├── sample001 │ ├── character_0001.png │ ├── character_0002.png │ ├── character_0003.png │ └── screen_shot.png ├── sample002 │ ├── character_0001.png │ ├── character_0002.png │ └── screen_shot.png ├── sample003 │ └── screen_shot.png ├── sample004 │ ├── bg_main.jpg │ └── screen_shot.png ├── screen_shot.png └── screen_shot_ogp.png ├── js └── message_view.js └── scss ├── _common_inc.scss ├── _mixin-style.scss ├── _reset.scss ├── _setting.scss ├── sample.scss ├── style.scss └── theme.scss /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | bower_components/ 3 | node_modules/ 4 | *.idea 5 | *.iml 6 | *.DS_Store 7 | src/html/*.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Daisuke Takayama 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MessageViewJS 2 | Talking Scene JavaScript Library 3 | HTML5, WebGame etc... 4 | 5 |  6 | 7 | ### これは何? 8 | 「MessageViewJS」はゲーム内でよくある会話シーンを簡単実装できる、JavaScriptライブラリです 9 | 10 | 11 | ### demo 12 | [デモページ](http://webcyou.com/message_view_js/demo/) 13 | 14 | ### Install 15 | 16 | #### Bower 17 | ``` 18 | bower install message_view.js 19 | ``` 20 | 21 | #### npm 22 | ``` 23 | npm install message-view-js 24 | ``` 25 | 26 | ### The Basics 27 | 28 | ``` 29 | 30 |
31 | 32 | 43 | 44 |