├── .eslintrc.json ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── docs └── screenshot.png ├── favicon.ico ├── gulpfile.js ├── index.html ├── package.json └── res ├── css ├── base.css └── index.css ├── img ├── bar_sound_01.png ├── bar_sound_02.png ├── bar_sound_03.png ├── bar_sound_04.png ├── bg_02.jpg ├── bg_mask_01.png ├── bg_panel_body_01.svg ├── bg_panel_btn-center_01.png ├── bg_panel_btn-center_01_h.png ├── bg_panel_btn-left_01.png ├── bg_panel_btn-left_01_h.png ├── bg_panel_btn-right_01.png ├── bg_panel_btn-right_01_h.png ├── bg_panel_cancelbtn-center_01.png ├── bg_panel_cancelbtn-center_01_h.png ├── bg_panel_cancelbtn-left_01.png ├── bg_panel_cancelbtn-left_01_h.png ├── bg_panel_cancelbtn-right_01.png ├── bg_panel_cancelbtn-right_01_h.png ├── bg_panel_title_01.png ├── bg_tenkoku-bottom_01.png ├── bg_tenkoku-middle_01.png ├── bg_tenkoku-top_01.png ├── btn_fude_01.png ├── btn_suzuri_01.png ├── bunchin.png ├── frame.png ├── fude_B.png ├── fude_L.png ├── fude_M.png ├── hand_L.png ├── hand_M.png ├── hand_S.png ├── hanshi.png ├── icon_checkbox_01.png ├── icon_checkbox_02_o.png ├── icon_close_01.png ├── icon_close_01_h.png ├── icon_marker_01.png ├── icon_sound_01.png ├── icon_sound_02.png ├── icon_user_anonymous_01.png ├── loading_L.gif ├── logo_side_01.png ├── paper_thumb_00.png ├── paper_thumb_01.png ├── paper_thumb_02.png ├── paper_thumb_03.png ├── paper_thumb_04.png ├── paper_thumb_05.png ├── paper_thumb_06.png ├── paper_thumb_07.png ├── shitajiki.png ├── steel.png └── title_02.png ├── js ├── TheShodo.FloatingPanel.js ├── TheShodo.Shodo.Core.js ├── TheShodo.Shodo.Player.js ├── TheShodo.Shodo.Resources.js ├── TheShodo.Shodo.Write.js ├── TheShodo.js ├── floatingPanels.js ├── jquery-1.7.min.js └── kazari.js └── media ├── bAtenkoku2010.ttf ├── bAtenkoku2010.woff ├── bgm_01.ogg ├── movie.mp4 └── silence.mp3 /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | /.idea/ 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/favicon.ico -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/package.json -------------------------------------------------------------------------------- /res/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/css/base.css -------------------------------------------------------------------------------- /res/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/css/index.css -------------------------------------------------------------------------------- /res/img/bar_sound_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bar_sound_01.png -------------------------------------------------------------------------------- /res/img/bar_sound_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bar_sound_02.png -------------------------------------------------------------------------------- /res/img/bar_sound_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bar_sound_03.png -------------------------------------------------------------------------------- /res/img/bar_sound_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bar_sound_04.png -------------------------------------------------------------------------------- /res/img/bg_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_02.jpg -------------------------------------------------------------------------------- /res/img/bg_mask_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_mask_01.png -------------------------------------------------------------------------------- /res/img/bg_panel_body_01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_body_01.svg -------------------------------------------------------------------------------- /res/img/bg_panel_btn-center_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_btn-center_01.png -------------------------------------------------------------------------------- /res/img/bg_panel_btn-center_01_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_btn-center_01_h.png -------------------------------------------------------------------------------- /res/img/bg_panel_btn-left_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_btn-left_01.png -------------------------------------------------------------------------------- /res/img/bg_panel_btn-left_01_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_btn-left_01_h.png -------------------------------------------------------------------------------- /res/img/bg_panel_btn-right_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_btn-right_01.png -------------------------------------------------------------------------------- /res/img/bg_panel_btn-right_01_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_btn-right_01_h.png -------------------------------------------------------------------------------- /res/img/bg_panel_cancelbtn-center_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_cancelbtn-center_01.png -------------------------------------------------------------------------------- /res/img/bg_panel_cancelbtn-center_01_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_cancelbtn-center_01_h.png -------------------------------------------------------------------------------- /res/img/bg_panel_cancelbtn-left_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_cancelbtn-left_01.png -------------------------------------------------------------------------------- /res/img/bg_panel_cancelbtn-left_01_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_cancelbtn-left_01_h.png -------------------------------------------------------------------------------- /res/img/bg_panel_cancelbtn-right_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_cancelbtn-right_01.png -------------------------------------------------------------------------------- /res/img/bg_panel_cancelbtn-right_01_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_cancelbtn-right_01_h.png -------------------------------------------------------------------------------- /res/img/bg_panel_title_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_panel_title_01.png -------------------------------------------------------------------------------- /res/img/bg_tenkoku-bottom_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_tenkoku-bottom_01.png -------------------------------------------------------------------------------- /res/img/bg_tenkoku-middle_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_tenkoku-middle_01.png -------------------------------------------------------------------------------- /res/img/bg_tenkoku-top_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bg_tenkoku-top_01.png -------------------------------------------------------------------------------- /res/img/btn_fude_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/btn_fude_01.png -------------------------------------------------------------------------------- /res/img/btn_suzuri_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/btn_suzuri_01.png -------------------------------------------------------------------------------- /res/img/bunchin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/bunchin.png -------------------------------------------------------------------------------- /res/img/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/frame.png -------------------------------------------------------------------------------- /res/img/fude_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/fude_B.png -------------------------------------------------------------------------------- /res/img/fude_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/fude_L.png -------------------------------------------------------------------------------- /res/img/fude_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/fude_M.png -------------------------------------------------------------------------------- /res/img/hand_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/hand_L.png -------------------------------------------------------------------------------- /res/img/hand_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/hand_M.png -------------------------------------------------------------------------------- /res/img/hand_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/hand_S.png -------------------------------------------------------------------------------- /res/img/hanshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/hanshi.png -------------------------------------------------------------------------------- /res/img/icon_checkbox_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/icon_checkbox_01.png -------------------------------------------------------------------------------- /res/img/icon_checkbox_02_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/icon_checkbox_02_o.png -------------------------------------------------------------------------------- /res/img/icon_close_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/icon_close_01.png -------------------------------------------------------------------------------- /res/img/icon_close_01_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/icon_close_01_h.png -------------------------------------------------------------------------------- /res/img/icon_marker_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/icon_marker_01.png -------------------------------------------------------------------------------- /res/img/icon_sound_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/icon_sound_01.png -------------------------------------------------------------------------------- /res/img/icon_sound_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/icon_sound_02.png -------------------------------------------------------------------------------- /res/img/icon_user_anonymous_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/icon_user_anonymous_01.png -------------------------------------------------------------------------------- /res/img/loading_L.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/loading_L.gif -------------------------------------------------------------------------------- /res/img/logo_side_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/logo_side_01.png -------------------------------------------------------------------------------- /res/img/paper_thumb_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/paper_thumb_00.png -------------------------------------------------------------------------------- /res/img/paper_thumb_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/paper_thumb_01.png -------------------------------------------------------------------------------- /res/img/paper_thumb_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/paper_thumb_02.png -------------------------------------------------------------------------------- /res/img/paper_thumb_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/paper_thumb_03.png -------------------------------------------------------------------------------- /res/img/paper_thumb_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/paper_thumb_04.png -------------------------------------------------------------------------------- /res/img/paper_thumb_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/paper_thumb_05.png -------------------------------------------------------------------------------- /res/img/paper_thumb_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/paper_thumb_06.png -------------------------------------------------------------------------------- /res/img/paper_thumb_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/paper_thumb_07.png -------------------------------------------------------------------------------- /res/img/shitajiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/shitajiki.png -------------------------------------------------------------------------------- /res/img/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/steel.png -------------------------------------------------------------------------------- /res/img/title_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/img/title_02.png -------------------------------------------------------------------------------- /res/js/TheShodo.FloatingPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/js/TheShodo.FloatingPanel.js -------------------------------------------------------------------------------- /res/js/TheShodo.Shodo.Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/js/TheShodo.Shodo.Core.js -------------------------------------------------------------------------------- /res/js/TheShodo.Shodo.Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/js/TheShodo.Shodo.Player.js -------------------------------------------------------------------------------- /res/js/TheShodo.Shodo.Resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/js/TheShodo.Shodo.Resources.js -------------------------------------------------------------------------------- /res/js/TheShodo.Shodo.Write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/js/TheShodo.Shodo.Write.js -------------------------------------------------------------------------------- /res/js/TheShodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/js/TheShodo.js -------------------------------------------------------------------------------- /res/js/floatingPanels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/js/floatingPanels.js -------------------------------------------------------------------------------- /res/js/jquery-1.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/js/jquery-1.7.min.js -------------------------------------------------------------------------------- /res/js/kazari.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/js/kazari.js -------------------------------------------------------------------------------- /res/media/bAtenkoku2010.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/media/bAtenkoku2010.ttf -------------------------------------------------------------------------------- /res/media/bAtenkoku2010.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/media/bAtenkoku2010.woff -------------------------------------------------------------------------------- /res/media/bgm_01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/media/bgm_01.ogg -------------------------------------------------------------------------------- /res/media/movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/media/movie.mp4 -------------------------------------------------------------------------------- /res/media/silence.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobysy/shodo/HEAD/res/media/silence.mp3 --------------------------------------------------------------------------------