├── .DS_Store ├── .gitignore ├── README.md ├── deploy.sh ├── docs ├── .DS_Store ├── .vuepress │ ├── components │ │ ├── f-checkbox.vue │ │ ├── f-color.vue │ │ ├── f-demo.vue │ │ ├── f-form.vue │ │ ├── f-icon.vue │ │ ├── f-input.vue │ │ ├── f-radio.vue │ │ └── f-select.vue │ ├── config.js │ ├── config │ │ ├── author.js │ │ └── gitalk.js │ └── public │ │ ├── img │ │ ├── article │ │ │ ├── .DS_Store │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── art-1.png │ │ │ ├── art-2.gif │ │ │ ├── art-3.png │ │ │ ├── art-4.gif │ │ │ ├── art-5.gif │ │ │ ├── art-6.gif │ │ │ ├── art-7.png │ │ │ ├── c-1.png │ │ │ ├── c-2.png │ │ │ ├── c-3.png │ │ │ ├── c-4.png │ │ │ ├── c-5.png │ │ │ ├── c-6.png │ │ │ ├── c-7.png │ │ │ ├── c-8.gif │ │ │ ├── cover.png │ │ │ ├── d-1.png │ │ │ ├── d-2.gif │ │ │ ├── d-3.gif │ │ │ ├── d-4.png │ │ │ ├── d-5.png │ │ │ ├── d-6.png │ │ │ ├── d-7.png │ │ │ ├── d-8.png │ │ │ ├── demo.gif │ │ │ ├── demo.png │ │ │ ├── demo2.png │ │ │ ├── demo3.png │ │ │ ├── demo4.png │ │ │ ├── designRules │ │ │ │ ├── h-h5.png │ │ │ │ ├── h-pc.png │ │ │ │ ├── h-reson.png │ │ │ │ ├── h-size.png │ │ │ │ ├── h-wx.png │ │ │ │ ├── rate.jpeg │ │ │ │ └── wxfont.png │ │ │ ├── r-1.png │ │ │ ├── r-2.png │ │ │ ├── r-3.png │ │ │ ├── r-4.png │ │ │ ├── rules.png │ │ │ ├── rules1.png │ │ │ ├── rules2.png │ │ │ ├── s-1.png │ │ │ ├── s-2.png │ │ │ ├── s-3.png │ │ │ ├── s-4.png │ │ │ ├── s-5.png │ │ │ ├── s-6.gif │ │ │ ├── s-7.gif │ │ │ ├── s-8.gif │ │ │ ├── tool.gif │ │ │ ├── toolcode copy 2.jpg │ │ │ ├── toolcode copy.jpg │ │ │ ├── toolcode.jpg │ │ │ ├── 上传.gif │ │ │ ├── 上传指引.gif │ │ │ ├── 图片生成.gif │ │ │ ├── 我的生成.gif │ │ │ ├── 我的素材.gif │ │ │ ├── 文字生成.gif │ │ │ ├── 流程.mp4 │ │ │ ├── 社区.gif │ │ │ ├── 艺术例子.png │ │ │ ├── 首页.gif │ │ │ └── 黑白例子.png │ │ ├── logo.ico │ │ ├── nuomizi.jpg │ │ ├── tutu.jpg │ │ └── yating.jpeg │ │ ├── js │ │ ├── live2d.js │ │ └── message.js │ │ └── live2d │ │ ├── hijiki │ │ ├── hijiki.model.json │ │ ├── hijiki.pose.json │ │ ├── moc │ │ │ ├── hijiki.2048 │ │ │ │ └── texture_00.png │ │ │ └── hijiki.moc │ │ └── mtn │ │ │ ├── 00_idle.mtn │ │ │ ├── 01.mtn │ │ │ ├── 02.mtn │ │ │ ├── 03.mtn │ │ │ ├── 04.mtn │ │ │ ├── 05.mtn │ │ │ ├── 06.mtn │ │ │ ├── 07.mtn │ │ │ └── 08.mtn │ │ └── tororo │ │ ├── moc │ │ ├── tororo.2048 │ │ │ └── texture_00.png │ │ └── tororo.moc │ │ ├── mtn │ │ ├── 00_idle.mtn │ │ ├── 01.mtn │ │ ├── 02.mtn │ │ ├── 03.mtn │ │ ├── 04.mtn │ │ ├── 05.mtn │ │ ├── 06.mtn │ │ ├── 07.mtn │ │ └── 08.mtn │ │ ├── tororo.model.json │ │ └── tororo.pose.json └── README.md ├── package.json └── ting ├── .gitignore ├── README.md ├── components ├── ting-about.vue ├── ting-bg.vue ├── ting-caroulse.vue ├── ting-catalog.vue ├── ting-content.vue ├── ting-gitalk.vue ├── ting-live2d.vue ├── ting-loading.vue ├── ting-nav.vue ├── ting-pagecatalog.vue ├── ting-search.vue └── ting-type.vue ├── enhanceApp.js ├── global-components └── Badge.vue ├── index.js ├── layouts ├── 404.vue ├── GlobalLayout.vue ├── Layout.vue └── index.vue ├── package.json ├── public └── js │ ├── about.js │ ├── live2d.js │ └── message.js └── styles ├── adaptation.styl ├── animation.styl ├── index.styl └── markdown.styl /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | node_modules 3 | 4 | # Nuxt generate 5 | dist 6 | Blogs 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vuepress-theme-ting 2 | [github项目](https://github.com/Chenyating/vuepress-theme-ting) 3 | > 这是一个vuepress主题,主要功能有博客归档分类,以及留言,个人展示等;主题追求极简,根据 vuepress 的默认主题修改而成,官方的主题配置仍然适用; 4 | 这是一个看板娘小清新vuepress主题,主要功能有博客归档分类,以及留言,个人展示等;主题追求极简,根据 vuepress 的默认主题修改而成,官方的主题配置仍然适用; 5 | 6 | ## 预览地址 7 | [预览地址](https://www.yating.online/) 8 | 9 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512101419420.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 10 | 11 | ## 版本 12 | ### 第一版1.4.5 13 | 看板娘需在配置目录下设置路径。 14 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225330395.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 15 | 16 | - 如果你喜欢最初风格的版本:为1.4.5 17 | ``` 18 | npm i vuepress-theme-ting@1.4.5 19 | ``` 20 | 21 | ### 第二版2.x.x 22 | - 支持默认换装看板娘 23 | - 图灵对话机器人 24 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512101419420.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 25 | 26 | ``` 27 | npm i vuepress-theme-ting 28 | ``` 29 | UI风格我个人感觉还有待改进,我个人不是很喜欢哈哈哈~ 30 | 31 | 最近在致力于编写一个小清新风格的ui组件库要运用到本主题中,所以进度会比较慢。 32 | 33 | 34 | ## 新增功能 35 | 36 | ### 默认换装看板娘2.x.x 37 | 自动换装88套衣服,琳琅满目~,截图不过来了。 38 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094327396.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094251815.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094223485.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094104514.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512101028930.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 39 | 40 | ### 自定义看板娘 41 | - 本主题支持看板娘,由于live2d读取模型文件,你可以选择自己喜欢的看板娘,在配置时填写路径就可以了。 42 | 如果你不喜欢默认的看板娘模型,可以在config.js里增加看板娘路径。 43 | ``` 44 | module.exports = { 45 | …… 46 | head: [ 47 | …… 48 | ], 49 | themeConfig: { 50 | …… 51 | live2dModel: '/live2d/model/poi/poi.model.json', //live2d模型路径 52 | …… 53 | } 54 | } 55 | ``` 56 | - 其他待补充 57 | 58 | ### 图灵对话机器人2.x.x 59 | 可以与机器人聊天,并且播放语音; 60 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/2020051210373373.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 61 | #### 鸣谢 62 | |支持者|支持内容| 63 | |-|-| 64 | |[mumudadi](https://github.com/mumudadi)|提供图灵机器人后台技术支持。| 65 | 66 | 67 | ## 导语 68 | > 你是否喜欢这个vuepress主题呢?`按照步骤来`,你也可以使用这样的主题哦。以下是具体的配置使用过程。 69 | 70 | --- 71 | 72 | ## 前期工作 73 | > 新建项目project,在project下新建一个docs文件夹和一个package.json文件 74 | 75 | - 文件目录 76 | ``` 77 | project 78 | │ 79 | ├─── docs 80 | │ 81 | └─── package.json 82 | ``` 83 | 84 | - package.json内容 85 | ```json 86 | { 87 | "name": "demo", 88 | "version": "1.0.0", 89 | "description": "", 90 | "main": "index.js", 91 | "directories": { 92 | "doc": "docs" 93 | }, 94 | "scripts": { 95 | "dev": "vuepress dev docs", 96 | "build": "vuepress build docs" 97 | }, 98 | "keywords": [], 99 | "author": "", 100 | "license": "ISC" 101 | } 102 | ``` 103 | 104 | --- 105 | 106 | ## 下载主题 107 | 108 | ```cmd 109 | npm i vuepress-theme-ting 110 | npm i 111 | ``` 112 | 113 | - 目录结构 114 | ``` 115 | project 116 | │ 117 | ├─ docs 118 | │ 119 | ├─ package.json 120 | │ 121 | └─ node_modules 122 | ``` 123 | 124 | --- 125 | 126 | ## 配置 127 | > 在docs目录下新建README.md、catalog.md、.vuepress文件夹;在.vuepress文件下新建config.js文件; 128 | 129 | ``` 130 | project 131 | │ 132 | ├─ docs 133 | │ │ 134 | │ ├─ README.md 135 | │ │ 136 | │ ├─ catalog.md 137 | │ │ 138 | │ └─.vuepress 139 | │ │ 140 | │ └─config.js 141 | │ 142 | ├─ package.json 143 | │ 144 | └─ node_modules 145 | ``` 146 | 147 | - config.js内容 148 | ```js 149 | module.exports = { 150 | title: 'YATING',//网站名称 151 | description: '用心写代码,不辜负程序员之名',//网站描述 152 | themeConfig: { 153 | nav: [//导航栏 154 | { text: '主页', link: '/' }, 155 | { text: '目录',link:'/catalog'} 156 | ], 157 | catalogUrl:'/catalog',//必填 目录路径 158 | lastUpdated: 'Last Updated',//必填:文章显示最新修改时间 159 | }, 160 | theme:'ting'//必填:使用vuepress-theme-ting 主题 161 | } 162 | ``` 163 | 164 | - README.md 165 | ```yaml 166 | --- 167 | layout: index 168 | title: Home 169 | showMessage: false 170 | --- 171 | 172 | # vuepress-theme-ting 173 | 174 | > 如果你喜欢这个主题可以给我一个start,谢谢 175 | 176 | ## 欢迎使用 177 | ``` 178 | 179 | - catalog.md 180 | ```yaml 181 | --- 182 | layout: catalog 183 | --- 184 | layout:表示当前使用catalog页面; 185 | title:md文件标题,注意:命名为Home本主题均自动忽略; 186 | 187 | ``` 188 | 189 | ## 指令操作 190 | 191 | - 本地预览 192 | ``` 193 | npm run dev 194 | ``` 195 | 196 | 最终效果图如下: 197 | 198 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200112231356298.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200112231426474.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 199 | 200 | - 打包 201 | ``` 202 | npm run build 203 | ``` 204 | 205 | 206 | ## 预览地址 207 | [预览地址](https://www.yating.online/) 208 | 209 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225330395.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 210 | 211 | ## 文档设置 212 | 213 | md文档抬头以下列格式为例: 214 | ```yaml 215 | --- 216 | layout: index 217 | title: Home 218 | showMessage: false 219 | --- 220 | ``` 221 | 222 | layout:默认值为空,为文章内容页 223 | ```yaml 224 | catalog:表示当前页为目录页面; 225 | index:表示为主页; 226 | layout:默认文章内容(无需设置) 227 | ``` 228 | 229 | 当前文章属性 230 | ```yaml 231 | --- 232 | img:url 233 | title:文章标题 234 | showMessage:是否显示留言栏,侧边栏;默认为true 235 | --- 236 | ``` 237 | 238 | 注意:文章的图片若保存在`.vuepress/public/img/hello.jpg`路径下,对应图片将在目录中展示; 239 | 则相应的,请将img的值设置为:`/img/hello.jpg` 240 | 241 | 对应图片效果为: 242 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001346640.png) 243 | 244 | 245 | ## 注意 246 | 例如以下目录结构: 247 | ``` 248 | project 249 | │ 250 | ├─ docs 251 | │ │ 252 | │ ├─ README.md 253 | │ │ 254 | │ ├─ catalog.md 255 | │ │ 256 | │ └─.vuepress 257 | │ │ │ 258 | │ │ └─config.js 259 | │ └─ 你的文档 260 | │ 261 | ├─ package.json 262 | │ 263 | └─ node_modules 264 | ``` 265 | 266 | ## 效果图 267 | ### 主页 268 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225330395.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 269 | 270 | ### 目录 271 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225600826.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 272 | 273 | ### 内容 274 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225521690.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 275 | 276 | ### 其他 277 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225644433.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 278 | 279 | ### 手机端预览效果 280 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001515195.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/2019121700154317.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001553253.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001614921.png) 281 | 282 | ## 全部配置 283 | ```js 284 | // .vuepress/config.js 285 | module.exports = { 286 | title: 'YATING',//网站名称 287 | description: '用心写代码,不辜负程序员之名',//网站描述 288 | //head标签 289 | head: [ 290 | ['link', { rel: 'stylesheet', href: '/img/logo.ico' }],//注意"/"就是public资源目录。标签的logo 291 | ['script', { src: 'https://cdn.bootcss.com/jquery/3.4.1/jquery.js' }] 292 | ], 293 | themeConfig: { 294 | author:'tinger', 295 | headImg:'https://yating.online/res/img/yating.jpg',//选填:头像 296 | //导航栏 297 | nav: [ 298 | { text: '主页', link: '/' }, 299 | { text: '目录',link:'/config/catalog'}, 300 | { text: '项目列表', link: '/config/about' }, 301 | { text: 'Github',type:'url', link: 'https://github.com/Chenyating' }, 302 | ], 303 | catalogUrl:'/catalog',//必填 目录路径 304 | lastUpdated: 'Last Updated',//必填:文章显示最新修改时间 305 | smoothScroll: true,//选填 306 | //选填/live2d模型路径 307 | live2dModel:'/live2d/model/poi/poi.model.json', 308 | pageNum:5,//选填:目录每页显示条数 309 | gitalk:{//选填:gitalk留言设置 310 | clientID: '5b8613cfe15e02db85b7', 311 | clientSecret: 'd4129094c33b8da73e873470fb89aea53dfaf396', 312 | repo: 'Chenyating.github.io', 313 | owner: 'chenyating', 314 | admin: ['Chenyating'], 315 | distractionFreeMode: false // Facebook-like distraction free mode 316 | }, 317 | footer:'粤ICP备案号:18150247号'//选填 318 | }, 319 | theme:'ting'//必填:使用vuepress-theme-ting 主题 320 | } 321 | ``` 322 | 323 | ## 感谢阅读 324 | 如果你喜欢这个主题,请给我一个start,给予我一个鼓励吧~蟹蟹~ 325 | [github项目](https://github.com/Chenyating/vuepress-theme-ting) 326 | 327 | 328 | ## 其他 329 | 如果你在使用过程中遇到什么问题,可以与我联系,记得给我个start哟~ -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 确保脚本抛出遇到的错误 4 | set -e 5 | 6 | # 生成静态文件 7 | yarn run build 8 | 9 | # 进入生成的文件夹 10 | cd docs/.vuepress/dist 11 | 12 | echo "yating.world" >> CNAME 13 | 14 | # git init 15 | # git add -A 16 | # git commit -m 'deploy' 17 | 18 | # git config user.name "Chenyating" 19 | # git config user.email "924471303@qq.com" 20 | 21 | # # 如果发布到 https://.github.io 22 | # git push -f git@github.com:Chenyating/Chenyating.github.io.git master 23 | 24 | # cd - -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.DS_Store -------------------------------------------------------------------------------- /docs/.vuepress/components/f-checkbox.vue: -------------------------------------------------------------------------------- 1 | 30 | 31 | 49 | -------------------------------------------------------------------------------- /docs/.vuepress/components/f-color.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 42 | 43 | 55 | -------------------------------------------------------------------------------- /docs/.vuepress/components/f-demo.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 45 | 46 | 83 | -------------------------------------------------------------------------------- /docs/.vuepress/components/f-form.vue: -------------------------------------------------------------------------------- 1 | 40 | 41 | 134 | -------------------------------------------------------------------------------- /docs/.vuepress/components/f-icon.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 104 | 105 | 118 | -------------------------------------------------------------------------------- /docs/.vuepress/components/f-input.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /docs/.vuepress/components/f-radio.vue: -------------------------------------------------------------------------------- 1 | 38 | 39 | 63 | -------------------------------------------------------------------------------- /docs/.vuepress/components/f-select.vue: -------------------------------------------------------------------------------- 1 | 38 | 39 | 81 | -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | var gitalkConfig = require('./config/gitalk.js') 3 | var author = require('./config/author.js') 4 | 5 | module.exports = { 6 | theme: path.resolve(__dirname, '../../ting/'), 7 | title: 'word', //网站名称 8 | //head标签 9 | head: [ 10 | ['link', { 11 | rel: 'icon', 12 | type: "image/x-icon", 13 | href: '/img/logo.ico' 14 | }], 15 | ['script', { src: 'https://cdn.bootcss.com/jquery/3.4.1/jquery.js' }] 16 | ], 17 | themeConfig: { 18 | lastUpdated: 'Last Updated', 19 | smoothScroll: true, 20 | author: author, 21 | live2dModel: '/live2d/tororo/tororo.model.json', //live2d模型路径 22 | gitalk:gitalkConfig, 23 | 24 | }, 25 | markdown: { 26 | lineNumbers: true 27 | }, 28 | // theme: 'ting', 29 | port: 1234 30 | } -------------------------------------------------------------------------------- /docs/.vuepress/config/author.js: -------------------------------------------------------------------------------- 1 | var author = { 2 | name: "雅婷", 3 | description: '用心写代码,不辜负程序员之名', //网站描述 4 | headImg: '/img/yating.jpeg', //头像 5 | infolist: [{ 6 | txt: "做的小布丁", 7 | img: "/img/tutu.jpg" 8 | }, 9 | { 10 | txt: "我做的", 11 | img: "/img/nuomizi.jpg" 12 | }, 13 | { 14 | txt: "欢迎来我的世界哦", 15 | }, 16 | ] 17 | } 18 | 19 | module.exports = author; -------------------------------------------------------------------------------- /docs/.vuepress/config/gitalk.js: -------------------------------------------------------------------------------- 1 | var gitalkConfig = { 2 | clientID: '5b8613cfe15e02db85b7', 3 | clientSecret: 'd4129094c33b8da73e873470fb89aea53dfaf396', 4 | repo: 'Chenyating.github.io', 5 | owner: 'chenyating', 6 | admin: ['Chenyating'], 7 | distractionFreeMode: false // Facebook-like distraction free mode 8 | } 9 | 10 | module.exports = gitalkConfig; -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/.DS_Store -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/3.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/art-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/art-1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/art-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/art-2.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/art-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/art-3.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/art-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/art-4.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/art-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/art-5.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/art-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/art-6.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/art-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/art-7.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/c-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/c-1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/c-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/c-2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/c-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/c-3.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/c-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/c-4.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/c-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/c-5.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/c-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/c-6.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/c-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/c-7.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/c-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/c-8.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/cover.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/d-1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/d-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/d-2.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/d-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/d-3.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/d-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/d-4.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/d-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/d-5.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/d-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/d-6.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/d-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/d-7.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/d-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/d-8.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/demo.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/demo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/demo2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/demo3.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/demo4.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/designRules/h-h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/designRules/h-h5.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/designRules/h-pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/designRules/h-pc.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/designRules/h-reson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/designRules/h-reson.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/designRules/h-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/designRules/h-size.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/designRules/h-wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/designRules/h-wx.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/designRules/rate.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/designRules/rate.jpeg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/designRules/wxfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/designRules/wxfont.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/r-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/r-1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/r-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/r-2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/r-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/r-3.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/r-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/r-4.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/rules.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/rules1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/rules1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/rules2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/rules2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/s-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/s-1.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/s-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/s-2.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/s-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/s-3.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/s-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/s-4.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/s-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/s-5.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/s-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/s-6.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/s-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/s-7.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/s-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/s-8.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/tool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/tool.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/toolcode copy 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/toolcode copy 2.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/toolcode copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/toolcode copy.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/toolcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/toolcode.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/上传.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/上传.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/上传指引.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/上传指引.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/图片生成.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/图片生成.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/我的生成.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/我的生成.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/我的素材.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/我的素材.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/文字生成.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/文字生成.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/流程.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/流程.mp4 -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/社区.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/社区.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/艺术例子.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/艺术例子.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/首页.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/首页.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/img/article/黑白例子.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/article/黑白例子.png -------------------------------------------------------------------------------- /docs/.vuepress/public/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/logo.ico -------------------------------------------------------------------------------- /docs/.vuepress/public/img/nuomizi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/nuomizi.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/tutu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/tutu.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/img/yating.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/img/yating.jpeg -------------------------------------------------------------------------------- /docs/.vuepress/public/js/message.js: -------------------------------------------------------------------------------- 1 | var home_Path = 'https://yating.world/' 2 | var result = { 3 | mouseover: [{ 4 | selector: ".tag-face", 5 | text: ["要去——{text}吗?"] 6 | }, 7 | { 8 | selector: ".catalog .catalog-tit", 9 | text: ["要看看 《{text}》 么?"] 10 | }, 11 | { 12 | selector: ".tag", 13 | text: ["分个类一定有你想看的~"] 14 | }, 15 | { 16 | selector: ".search-box", 17 | text: ["要搜索什么东西呢,需要帮忙吗?"] 18 | } 19 | ], 20 | click: [{ 21 | selector: ".nav", 22 | text: ["是不是也喜欢这个主题呢?看看关于站点你也能拥有哦~"] 23 | }, 24 | { 25 | selector: ".taglist", 26 | text: ["这都是我平时积累的笔记呢~","爱学习是个好宝宝~,相信你也是!"] 27 | }, 28 | { 29 | selector: ".tag-box", 30 | text: ["这些都是我平时积累的笔记呢"] 31 | } 32 | ] 33 | } 34 | 35 | function renderTip(template, context) { 36 | var tokenReg = /(\\)?\{([^\{\}\\]+)(\\)?\}/g; 37 | return template.replace(tokenReg, function (word, slash1, token, slash2) { 38 | if (slash1 || slash2) { 39 | return word.replace('\\', ''); 40 | } 41 | var variables = token.replace(/\s/g, '').split('.'); 42 | var currentObject = context; 43 | var i, length, variable; 44 | for (i = 0, length = variables.length; i < length; ++i) { 45 | variable = variables[i]; 46 | currentObject = currentObject[variable]; 47 | if (currentObject === undefined || currentObject === null) return ''; 48 | } 49 | return currentObject; 50 | }); 51 | } 52 | 53 | String.prototype.renderTip = function (context) { 54 | return renderTip(this, context); 55 | }; 56 | 57 | var re = /x/; 58 | console.log(re); 59 | re.toString = function () { 60 | showMessage('哈哈,你打开了控制台,是想要看看我的秘密吗?', 5000); 61 | return ''; 62 | }; 63 | 64 | $(document).on('copy', function () { 65 | showMessage('你都复制了些什么呀,转载要记得加上出处哦~~', 5000); 66 | }); 67 | 68 | function initTips() { 69 | $.each(result.mouseover, function (index, tips) { 70 | $(tips.selector).mouseover(function () { 71 | var text = tips.text; 72 | if (Array.isArray(tips.text)) text = tips.text[Math.floor(Math.random() * tips.text.length + 1) - 1]; 73 | text = text.renderTip({ 74 | text: $(this).text() 75 | }); 76 | showMessage(text, 1000); 77 | }); 78 | }); 79 | $.each(result.click, function (index, tips) { 80 | $(tips.selector).click(function () { 81 | var text = tips.text; 82 | if (Array.isArray(tips.text)) text = tips.text[Math.floor(Math.random() * tips.text.length + 1) - 1]; 83 | text = text.renderTip({ 84 | text: $(this).text() 85 | }); 86 | showMessage(text, 3000); 87 | }); 88 | }); 89 | } 90 | initTips(); 91 | 92 | (function () { 93 | var text; 94 | if (document.referrer !== '') { 95 | var referrer = document.createElement('a'); 96 | referrer.href = document.referrer; 97 | text = '嗨!来自 ' + referrer.hostname + ' 的朋友!'; 98 | var domain = referrer.hostname.split('.')[1]; 99 | if (domain == 'baidu') { 100 | text = '嗨! 来自 百度搜索 的朋友!
欢迎访问「 ' + document.title.split(' - ')[0] + ' 」'; 101 | } else if (domain == 'so') { 102 | text = '嗨! 来自 360搜索 的朋友!
欢迎访问「 ' + document.title.split(' - ')[0] + ' 」'; 103 | } else if (domain == 'google') { 104 | text = '嗨! 来自 谷歌搜索 的朋友!
欢迎访问「 ' + document.title.split(' - ')[0] + ' 」'; 105 | } 106 | } else { 107 | var now = (new Date()).getHours(); 108 | if (now > 23 || now <= 5) { 109 | text = '你是夜猫子呀?这么晚还不睡觉,明天起的来嘛?'; 110 | } else if (now > 5 && now <= 7) { 111 | text = '早上好!一日之计在于晨,美好的一天就要开始了!'; 112 | } else if (now > 7 && now <= 11) { 113 | text = '上午好!工作顺利嘛,不要久坐,多起来走动走动哦!'; 114 | } else if (now > 11 && now <= 14) { 115 | text = '中午了,工作了一个上午,现在是午餐时间!'; 116 | } else if (now > 14 && now <= 17) { 117 | text = '午后很容易犯困呢,今天的运动目标完成了吗?'; 118 | } else if (now > 17 && now <= 19) { 119 | text = '傍晚了!窗外夕阳的景色很美丽呢,最美不过夕阳红~~'; 120 | } else if (now > 19 && now <= 21) { 121 | text = '晚上好,今天过得怎么样?'; 122 | } else if (now > 21 && now <= 23) { 123 | text = '已经这么晚了呀,早点休息吧,晚安~~'; 124 | } else { 125 | text = '嗨~ 你一定很爱学习吧!'; 126 | } 127 | } 128 | showMessage(text, 12000); 129 | })(); 130 | 131 | window.setInterval(showHitokoto, 30000); 132 | 133 | function showHitokoto() { 134 | $.getJSON('https://v1.hitokoto.cn/', function (result) { 135 | showMessage(result.hitokoto, 5000); 136 | }); 137 | } 138 | 139 | function showMessage(text, timeout) { 140 | if (Array.isArray(text)) text = text[Math.floor(Math.random() * text.length + 1) - 1]; 141 | $('.message').stop(); 142 | $('.message').html(text).fadeTo(200, 1); 143 | if (timeout === null) timeout = 5000; 144 | hideMessage(timeout); 145 | } 146 | 147 | function hideMessage(timeout) { 148 | $('.message').stop().css('opacity', 1); 149 | if (timeout === null) timeout = 5000; 150 | $('.message').delay(timeout).fadeTo(200, 0); 151 | } 152 | 153 | function initLive2d() { 154 | $('#landlord').hover(() => { 155 | $('.hide-button').fadeIn(600); 156 | }, () => { 157 | $('.hide-button').fadeOut(600) 158 | }) 159 | } 160 | initLive2d(); -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/hijiki.model.json: -------------------------------------------------------------------------------- 1 | {"version":"Sample 1.0.0","model":"moc/hijiki.moc","textures":["moc/hijiki.2048/texture_00.png"],"name":"hijiki","pose":"hijiki.pose.json","motions":{"idle":[{"file":"mtn/00_idle.mtn"}],"":[{"file":"mtn/01.mtn"},{"file":"mtn/02.mtn"},{"file":"mtn/03.mtn"},{"file":"mtn/04.mtn"},{"file":"mtn/05.mtn"},{"file":"mtn/06.mtn"},{"file":"mtn/07.mtn"},{"file":"mtn/08.mtn"}]}} -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/hijiki.pose.json: -------------------------------------------------------------------------------- 1 | {"type":"Live2D Pose","fade_in":0,"parts_visible":[{"group":[{"id":"PARTS_01_ARM_R"},{"id":"PARTS_01_ARM_R_02"}]},{"group":[{"id":"PARTS_01_ARM_L"},{"id":"PARTS_01_ARM_L_02"}]}]} -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/moc/hijiki.2048/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/live2d/hijiki/moc/hijiki.2048/texture_00.png -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/moc/hijiki.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/live2d/hijiki/moc/hijiki.moc -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/mtn/02.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0.01,0.04,0.08,0.15,0.22,0.31,0.41,0.53,0.65,0.78,0.91,1.06,1.2,1.35,1.5,1.65,1.8,1.94,2.09,2.22,2.35,2.47,2.59,2.69,2.78,2.85,2.92,2.96,2.99,3,2.97,2.9,2.79,2.64,2.47,2.28,2.08,1.86,1.64,1.42,1.2,0.99,0.78,0.6,0.43,0.28,0.17,0.08,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0 9 | PARAM_ANGLE_Y=0,-0.98,-3.11,-5.76,-8.51,-11.02,-13.1,-14.48,-15,-14.85,-14.43,-13.74,-12.81,-11.65,-10.31,-8.79,-7.11,-5.29,-3.35,-1.28,0.83,3.04,5.26,7.5,9.74,11.96,14.17,16.28,18.35,20.29,22.11,23.79,25.31,26.65,27.81,28.74,29.43,29.85,30,29.74,29,27.89,26.44,24.74,22.81,20.75,18.62,16.4,14.17,11.99,9.86,7.84,6,4.3,2.85,1.66,0.77,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0 10 | PARAM_ANGLE_Z=0,-0.52,-1.66,-3.14,-4.76,-6.34,-7.82,-9.06,-10,-10.82,-11.61,-12.37,-13.07,-13.76,-14.39,-15,-15.57,-16.1,-16.61,-17.08,-17.52,-17.94,-18.32,-18.67,-18.99,-19.29,-19.56,-19.81,-20.03,-20.22,-20.39,-20.54,-20.67,-20.77,-20.86,-20.92,-20.97,-20.99,-21,-20.82,-20.3,-19.52,-18.51,-17.32,-15.97,-14.53,-13.03,-11.48,-9.92,-8.39,-6.91,-5.49,-4.2,-3.01,-1.99,-1.16,-0.54,-0.14,0,0,0,0,0,0,0,0,0,0,0,0,0 11 | PARAM_EYE_L_OPEN=1,0.97,0.91,0.83,0.76,0.68,0.62,0.58,0.57,0.571,0.575,0.582,0.591,0.602,0.615,0.629,0.645,0.663,0.681,0.701,0.721,0.74,0.76,0.79,0.81,0.83,0.85,0.869,0.889,0.907,0.925,0.941,0.955,0.968,0.979,0.988,0.995,0.999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 12 | PARAM_EYE_R_OPEN=1,0.97,0.91,0.83,0.76,0.68,0.62,0.58,0.57,0.571,0.575,0.582,0.591,0.602,0.615,0.629,0.645,0.663,0.681,0.701,0.721,0.74,0.76,0.79,0.81,0.83,0.85,0.869,0.889,0.907,0.925,0.941,0.955,0.968,0.979,0.988,0.995,0.999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 13 | PARAM_EYE_BALL_X=0 14 | PARAM_EYE_BALL_Y=0 15 | PARAM_EYE_FORM=0,-0.07,-0.21,-0.38,-0.57,-0.73,-0.87,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.97,-0.93,-0.88,-0.82,-0.76,-0.69,-0.62,-0.55,-0.47,-0.4,-0.33,-0.26,-0.2,-0.14,-0.09,-0.06,-0.03,-0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 16 | PARAM_MOUTH_FORM=1,0.93,0.79,0.62,0.43,0.27,0.13,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.07,0.16,0.26,0.38,0.5,0.62,0.74,0.84,0.93,0.98,1 17 | PARAM_MOUTH_OPEN_Y=0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.88,0.82,0.76,0.69,0.62,0.55,0.47,0.4,0.33,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 18 | PARAM_TONGUE=0,0.05,0.16,0.29,0.43,0.55,0.66,0.72,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.744,0.725,0.7,0.66,0.62,0.57,0.52,0.47,0.41,0.35,0.3,0.25,0.2,0.15,0.11,0.07,0.04,0.02,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0 19 | PARAM_EAR_R=0,-0.04,-0.13,-0.24,-0.35,-0.46,-0.56,-0.63,-0.67,-0.7,-0.72,-0.74,-0.77,-0.79,-0.807,-0.826,-0.843,-0.859,-0.874,-0.888,-0.901,-0.913,-0.924,-0.934,-0.943,-0.952,-0.959,-0.966,-0.972,-0.978,-0.982,-0.986,-0.99,-0.993,-0.995,-0.997,-0.998,-0.999,-1,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.67,-0.59,-0.51,-0.43,-0.35,-0.28,-0.21,-0.15,-0.1,-0.06,-0.03,-0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=0,-0.03,-0.09,-0.18,-0.27,-0.35,-0.43,-0.5,-0.54,-0.58,-0.61,-0.64,-0.67,-0.7,-0.73,-0.75,-0.78,-0.8,-0.82,-0.84,-0.859,-0.875,-0.891,-0.905,-0.918,-0.93,-0.941,-0.951,-0.959,-0.967,-0.974,-0.98,-0.985,-0.989,-0.993,-0.995,-0.997,-0.999,-1,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.67,-0.59,-0.51,-0.43,-0.35,-0.28,-0.21,-0.15,-0.1,-0.06,-0.03,-0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 22 | PARAM_BODY_ANGLE_X=0 23 | PARAM_BODY_ANGLE_Y=0,-1.18,-3.73,-6.91,-10.21,-13.22,-15.72,-17.38,-18,-18,-18,-18,-17.998,-17.995,-17.99,-17.982,-17.972,-17.957,-17.94,-17.92,-17.89,-17.86,-17.82,-17.77,-17.72,-17.66,-17.59,-17.52,-17.43,-17.34,-17.24,-17.12,-17,-16.86,-16.72,-16.56,-16.38,-16.2,-16,-15.66,-15.11,-14.41,-13.56,-12.6,-11.56,-10.46,-9.35,-8.2,-7.06,-5.96,-4.89,-3.88,-2.96,-2.11,-1.4,-0.81,-0.38,-0.1,0,0,0,0,0,0,0,0,0,0,0,0,0 24 | PARAM_BIG_FACE=0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.88,0.82,0.76,0.69,0.62,0.55,0.47,0.4,0.33,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 25 | PARAM_BODY=1,0.95,0.82,0.67,0.52,0.4,0.33,0.3,0.301,0.302,0.305,0.308,0.313,0.318,0.324,0.331,0.339,0.347,0.357,0.366,0.377,0.388,0.4,0.412,0.425,0.439,0.453,0.467,0.481,0.496,0.512,0.527,0.543,0.559,0.576,0.592,0.609,0.625,0.642,0.658,0.675,0.691,0.708,0.724,0.741,0.757,0.773,0.788,0.804,0.819,0.833,0.847,0.861,0.875,0.888,0.9,0.912,0.923,0.934,0.943,0.953,0.961,0.969,0.976,0.982,0.987,0.992,0.995,0.998,0.999,1 26 | PARAM_BREATH=0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.87,0.81,0.74,0.67,0.59,0.51,0.43,0.35,0.28,0.21,0.15,0.1,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0,0.03,0.11,0.22,0.35,0.49,0.62,0.73,0.82,0.87,0.9,0.91,0.919,0.927,0.935,0.942,0.948,0.955,0.96,0.965,0.97,0.974,0.978,0.982,0.985,0.987,0.99,0.992,0.993,0.995,0.996,0.997,0.998,0.999,0.999,1,1,1,1,0.991,0.97,0.93,0.88,0.82,0.76,0.69,0.62,0.55,0.47,0.4,0.33,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 30 | PARAM_TAIL_ANGRY=0,0.03,0.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_HAND_R=0 34 | PARAM_HAND_L=0 35 | PARAM_ARM_L=0 36 | PARAM_HAND_L_MOVE=0 37 | PARAM_ARM_R_MOVE=0 38 | ARM_R_MOVE_02=0 39 | VISIBLE:PARTS_01_ARM_R=0 40 | VISIBLE:PARTS_01_ARM_L=0 41 | VISIBLE:PARTS_01_ARM_R_02=1 42 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/mtn/03.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.006,-0.025,-0.05,-0.09,-0.14,-0.19,-0.24,-0.3,-0.36,-0.43,-0.49,-0.56,-0.62,-0.68,-0.74,-0.79,-0.84,-0.89,-0.93,-0.96,-0.98,-0.995,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.67,-0.59,-0.51,-0.43,-0.35,-0.28,-0.21,-0.15,-0.1,-0.06,-0.03,-0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 9 | PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0.27,1.03,2.21,3.77,5.61,7.69,9.95,12.29,14.69,17.1,19.42,21.6,23.64,25.44,27.01,28.28,29.21,29.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.71,28.89,27.58,25.93,23.88,21.61,19.11,16.44,13.63,10.79,7.86,4.97,2.14,-0.64,-3.24,-5.68,-7.92,-9.93,-11.65,-13.07,-14.12,-14.77,-15,-14.87,-14.48,-13.9,-13.12,-12.2,-11.16,-10.03,-8.86,-7.65,-6.45,-5.29,-4.2,-3.18,-2.28,-1.49,-0.86,-0.39,-0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 10 | PARAM_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.09,0.19,0.35,0.54,0.79,1.08,1.41,1.79,2.23,2.7,3.21,3.77,4.38,5.02,5.71,6.43,7.2,8,8.94,9.83,10.68,11.47,12.2,12.87,13.47,14.01,14.48,14.89,15.23,15.51,15.73,15.88,15.97,16,15.986,15.95,15.88,15.77,15.64,15.48,15.28,15.05,14.78,14.48,14.14,13.77,13.36,12.91,12.42,11.9,11.35,10.74,10.11,9.44,8.74,8,7.12,6.26,5.43,4.66,3.9,3.2,2.52,1.88,1.28,0.72,0.19,-0.31,-0.76,-1.17,-1.54,-1.88,-2.17,-2.42,-2.62,-2.79,-2.91,-2.98,-3,-2.97,-2.9,-2.78,-2.62,-2.44,-2.23,-2.01,-1.77,-1.53,-1.29,-1.06,-0.84,-0.64,-0.46,-0.3,-0.17,-0.08,-0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 11 | PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 12 | PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 13 | PARAM_EYE_BALL_X=0 14 | PARAM_EYE_BALL_Y=0 15 | PARAM_EYE_FORM=1 16 | PARAM_MOUTH_FORM=1,0.97,0.89,0.78,0.65,0.52,0.39,0.26,0.16,0.07,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 17 | PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.026,0.06,0.1,0.14,0.19,0.25,0.31,0.38,0.44,0.5,0.56,0.62,0.67,0.72,0.76,0.79,0.81,0.83,0.843,0.855,0.867,0.878,0.888,0.898,0.907,0.916,0.924,0.931,0.938,0.944,0.95,0.956,0.961,0.965,0.97,0.973,0.977,0.98,0.983,0.986,0.988,0.99,0.992,0.993,0.995,0.996,0.997,0.998,0.998,0.999,0.999,1,1,1,1,1,0.994,0.975,0.95,0.91,0.86,0.81,0.76,0.7,0.64,0.57,0.51,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 18 | PARAM_TONGUE=0,0,0,0,0,0,0,0,0,0,0,0,0.04,0.1,0.15,0.18,0.21,0.24,0.26,0.29,0.31,0.34,0.36,0.38,0.41,0.43,0.45,0.48,0.5,0.53,0.55,0.58,0.6,0.62,0.642,0.66,0.677,0.691,0.704,0.715,0.725,0.733,0.739,0.744,0.747,0.749,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.747,0.74,0.728,0.713,0.694,0.67,0.65,0.63,0.6,0.57,0.55,0.52,0.5,0.47,0.45,0.42,0.405,0.386,0.37,0.358,0.348,0.342,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.339,0.339,0.338,0.338,0.337,0.336,0.335,0.335,0.334,0.333,0.331,0.33,0.329,0.328,0.327,0.326,0.325,0.323,0.322,0.321,0.32,0.319,0.318,0.317,0.316,0.315,0.314,0.313,0.313,0.312,0.311,0.311,0.311,0.31,0.31,0.31 19 | PARAM_EAR_R=1,0.998,0.993,0.985,0.972,0.956,0.936,0.91,0.88,0.85,0.81,0.77,0.72,0.67,0.62,0.56,0.49,0.42,0.35,0.27,0.18,0.09,0,-0.1,-0.2,-0.3,-0.4,-0.49,-0.58,-0.66,-0.73,-0.8,-0.86,-0.91,-0.95,-0.98,-0.994,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.91,-0.8,-0.68,-0.53,-0.37,-0.2,-0.02,0.15,0.32,0.47,0.62,0.75,0.85,0.93,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=1,0.998,0.993,0.985,0.972,0.956,0.936,0.91,0.88,0.85,0.81,0.77,0.72,0.67,0.62,0.56,0.49,0.42,0.35,0.27,0.18,0.09,0,-0.1,-0.2,-0.3,-0.4,-0.49,-0.58,-0.66,-0.73,-0.8,-0.86,-0.91,-0.95,-0.98,-0.994,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.91,-0.8,-0.68,-0.53,-0.37,-0.2,-0.02,0.15,0.32,0.47,0.62,0.75,0.85,0.93,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 22 | PARAM_BODY_ANGLE_X=0 23 | PARAM_BODY_ANGLE_Y=0 24 | PARAM_BIG_FACE=0 25 | PARAM_BODY=1 26 | PARAM_BREATH=0 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.03,0.07,0.12,0.17,0.23,0.3,0.36,0.43,0.49,0.55,0.61,0.66,0.7,0.73,0.75,0.768,0.786,0.802,0.818,0.832,0.846,0.86,0.872,0.884,0.895,0.905,0.914,0.923,0.931,0.939,0.946,0.953,0.959,0.964,0.969,0.973,0.977,0.981,0.984,0.987,0.99,0.992,0.994,0.995,0.996,0.998,0.998,0.999,0.999,1,1,1,0.987,0.95,0.9,0.84,0.76,0.68,0.6,0.51,0.42,0.34,0.26,0.19,0.13,0.07,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 30 | PARAM_TAIL_ANGRY=0 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_HAND_R=0 34 | PARAM_HAND_L=0 35 | PARAM_ARM_L=0 36 | VISIBLE:PARTS_01_ARM_R=0 37 | VISIBLE:PARTS_01_ARM_L=0 38 | VISIBLE:PARTS_01_ARM_R_02=1 39 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/mtn/04.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.03,-0.1,-0.22,-0.36,-0.54,-0.75,-0.97,-1.21,-1.46,-1.71,-1.97,-2.23,-2.48,-2.72,-2.95,-3.17,-3.37,-3.55,-3.7,-3.83,-3.92,-3.98,-4,-3.998,-3.993,-3.984,-3.972,-3.956,-3.938,-3.92,-3.89,-3.86,-3.83,-3.8,-3.76,-3.73,-3.69,-3.64,-3.6,-3.55,-3.5,-3.45,-3.4,-3.34,-3.29,-3.23,-3.17,-3.11,-3.05,-2.98,-2.92,-2.85,-2.78,-2.72,-2.65,-2.58,-2.51,-2.44,-2.37,-2.3,-2.23,-2.15,-2.08,-2.01,-1.94,-1.87,-1.79,-1.72,-1.65,-1.58,-1.51,-1.44,-1.37,-1.3,-1.24,-1.17,-1.1,-1.04,-0.98,-0.91,-0.85,-0.79,-0.74,-0.68,-0.63,-0.57,-0.52,-0.47,-0.43,-0.38,-0.34,-0.3,-0.26,-0.22,-0.19,-0.16,-0.13,-0.1,-0.08,-0.058,-0.041,-0.026,-0.015,-0.007,-0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 9 | PARAM_ANGLE_Y=0,-0.05,-0.22,-0.48,-0.83,-1.27,-1.78,-2.36,-3.01,-3.73,-4.49,-5.32,-6.19,-7.1,-8.07,-9.05,-10.08,-11.14,-12.23,-13.35,-14.49,-15.65,-16.8,-18,-19.3,-20.5,-21.62,-22.61,-23.54,-24.38,-25.14,-25.83,-26.46,-27.01,-27.52,-27.97,-28.36,-28.7,-29,-29.25,-29.46,-29.64,-29.77,-29.88,-29.95,-29.99,-30,-29.999,-29.996,-29.992,-29.985,-29.976,-29.965,-29.952,-29.937,-29.919,-29.899,-29.88,-29.85,-29.82,-29.79,-29.76,-29.73,-29.69,-29.65,-29.6,-29.56,-29.5,-29.45,-29.4,-29.34,-29.27,-29.21,-29.14,-29.06,-28.99,-28.91,-28.82,-28.74,-28.65,-28.55,-28.45,-28.35,-28.24,-28.13,-28.02,-27.9,-27.77,-27.65,-27.52,-27.38,-27.24,-27.09,-26.94,-26.79,-26.63,-26.46,-26.3,-26.12,-25.94,-25.76,-25.57,-25.38,-25.18,-24.97,-24.77,-24.55,-24.33,-24.11,-23.88,-23.64,-23.4,-23.15,-22.9,-22.64,-22.37,-22.1,-21.82,-21.54,-21.25,-20.95,-20.65,-20.34,-20.03,-19.71,-19.38,-19.04,-18.71,-18.36,-18,-17.6,-17.15,-16.66,-16.12,-15.54,-14.94,-14.3,-13.63,-12.95,-12.25,-11.54,-10.81,-10.08,-9.36,-8.63,-7.91,-7.19,-6.5,-5.82,-5.16,-4.53,-3.92,-3.36,-2.81,-2.32,-1.86,-1.44,-1.08,-0.76,-0.49,-0.28,-0.13,-0.03,0 10 | PARAM_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.1,-0.37,-0.81,-1.36,-2.04,-2.8,-3.63,-4.52,-5.46,-6.4,-7.38,-8.34,-9.29,-10.21,-11.08,-11.89,-12.64,-13.31,-13.88,-14.36,-14.71,-14.92,-15,-14.993,-14.973,-14.94,-14.89,-14.84,-14.77,-14.68,-14.59,-14.49,-14.38,-14.25,-14.12,-13.97,-13.82,-13.66,-13.49,-13.32,-13.13,-12.94,-12.74,-12.54,-12.33,-12.11,-11.88,-11.66,-11.42,-11.18,-10.94,-10.69,-10.44,-10.19,-9.93,-9.67,-9.41,-9.15,-8.88,-8.61,-8.34,-8.08,-7.8,-7.53,-7.26,-6.99,-6.73,-6.46,-6.19,-5.92,-5.66,-5.4,-5.14,-4.89,-4.63,-4.38,-4.14,-3.9,-3.66,-3.43,-3.2,-2.98,-2.76,-2.55,-2.35,-2.15,-1.96,-1.77,-1.59,-1.43,-1.27,-1.11,-0.97,-0.83,-0.7,-0.59,-0.48,-0.38,-0.29,-0.22,-0.15,-0.1,-0.06,-0.03,-0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 11 | PARAM_EYE_L_OPEN=0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499,0.497,0.493,0.489,0.483,0.476,0.469,0.462,0.453,0.445,0.437,0.429,0.421,0.413,0.406,0.4,0.394,0.389,0.385,0.382,0.381,0.38,0.381,0.382,0.385,0.389,0.393,0.398,0.403,0.409,0.416,0.422,0.429,0.436,0.443,0.449,0.456,0.463,0.469,0.474,0.48,0.485,0.489,0.493,0.496,0.498,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 12 | PARAM_EYE_R_OPEN=0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.499,0.497,0.493,0.489,0.483,0.476,0.469,0.462,0.453,0.445,0.437,0.429,0.421,0.413,0.406,0.4,0.394,0.389,0.385,0.382,0.381,0.38,0.381,0.382,0.385,0.389,0.393,0.398,0.403,0.409,0.416,0.422,0.429,0.436,0.443,0.449,0.456,0.463,0.469,0.474,0.48,0.485,0.489,0.493,0.496,0.498,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5 13 | PARAM_EYE_BALL_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.001,0.001,0.002,0.002,0.002,0.003,0.004,0.004,0.005,0.006,0.007,0.007,0.008,0.009,0.01,0.011,0.012,0.013,0.014,0.016,0.017,0.018,0.019,0.021,0.022,0.023,0.025,0.026,0.027,0.029,0.03,0.032,0.033,0.035,0.036,0.038,0.039,0.041,0.042,0.044,0.045,0.047,0.048,0.05,0.052,0.053,0.055,0.056,0.058,0.059,0.061,0.062,0.064,0.065,0.067,0.068,0.07,0.071,0.073,0.074,0.075,0.077,0.078,0.079,0.081,0.082,0.083,0.084,0.086,0.087,0.088,0.089,0.09,0.091,0.092,0.093,0.093,0.094,0.095,0.096,0.096,0.097,0.098,0.098,0.098,0.099,0.099,0.099,0.1,0.1,0.1,0.1,0.099,0.098,0.096,0.093,0.089,0.084,0.079,0.074,0.068,0.062,0.056,0.05,0.044,0.038,0.032,0.026,0.021,0.016,0.011,0.007,0.004,0.002,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 14 | PARAM_EYE_BALL_Y=0,-0.009,-0.03,-0.07,-0.13,-0.19,-0.26,-0.33,-0.41,-0.49,-0.57,-0.65,-0.72,-0.79,-0.85,-0.9,-0.94,-0.97,-0.993,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.99,-0.96,-0.91,-0.85,-0.78,-0.69,-0.59,-0.48,-0.37,-0.25,-0.13,0,0.13,0.25,0.37,0.48,0.59,0.69,0.78,0.85,0.91,0.96,0.99,1,0.995,0.98,0.96,0.93,0.89,0.84,0.79,0.74,0.68,0.62,0.56,0.5,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0 15 | PARAM_EYE_FORM=-1 16 | PARAM_MOUTH_FORM=1 17 | PARAM_MOUTH_OPEN_Y=0 18 | PARAM_TONGUE=0 19 | PARAM_EAR_R=0 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=0 22 | PARAM_BODY_ANGLE_X=0 23 | PARAM_BODY_ANGLE_Y=0,-0.08,-0.33,-0.71,-1.2,-1.8,-2.47,-3.22,-4.01,-4.85,-5.7,-6.58,-7.46,-8.32,-9.17,-9.97,-10.74,-11.45,-12.1,-12.67,-13.16,-13.55,-13.83,-14,-14.11,-14.21,-14.32,-14.42,-14.52,-14.62,-14.72,-14.81,-14.91,-15,-15.09,-15.17,-15.26,-15.35,-15.43,-15.51,-15.59,-15.67,-15.74,-15.82,-15.89,-15.97,-16.04,-16.1,-16.17,-16.24,-16.3,-16.36,-16.42,-16.49,-16.54,-16.6,-16.66,-16.71,-16.76,-16.81,-16.86,-16.91,-16.96,-17.01,-17.05,-17.1,-17.14,-17.18,-17.22,-17.26,-17.3,-17.33,-17.37,-17.4,-17.43,-17.47,-17.5,-17.53,-17.55,-17.58,-17.61,-17.63,-17.66,-17.68,-17.7,-17.73,-17.746,-17.766,-17.784,-17.802,-17.819,-17.835,-17.85,-17.865,-17.878,-17.891,-17.903,-17.914,-17.925,-17.934,-17.943,-17.951,-17.959,-17.966,-17.972,-17.977,-17.982,-17.987,-17.99,-17.993,-17.996,-17.998,-17.999,-18,-18,-17.91,-17.65,-17.23,-16.67,-15.99,-15.21,-14.31,-13.36,-12.35,-11.3,-10.24,-9.13,-8.05,-6.99,-5.94,-4.94,-4.02,-3.16,-2.37,-1.69,-1.1,-0.63,-0.29,-0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 24 | PARAM_BIG_FACE=0,0.002,0.006,0.014,0.024,0.036,0.05,0.065,0.081,0.099,0.117,0.136,0.155,0.174,0.193,0.212,0.23,0.248,0.265,0.281,0.295,0.309,0.32,0.33,0.339,0.349,0.358,0.366,0.375,0.383,0.391,0.399,0.407,0.415,0.422,0.429,0.436,0.443,0.45,0.456,0.462,0.468,0.474,0.48,0.485,0.491,0.496,0.501,0.506,0.511,0.515,0.52,0.524,0.528,0.532,0.536,0.54,0.543,0.547,0.55,0.553,0.556,0.559,0.562,0.565,0.567,0.57,0.572,0.575,0.577,0.579,0.581,0.582,0.584,0.586,0.587,0.589,0.59,0.591,0.592,0.593,0.594,0.595,0.596,0.597,0.597,0.598,0.598,0.599,0.599,0.6,0.6,0.6,0.6,0.6,0.6,0.599,0.597,0.594,0.591,0.587,0.583,0.578,0.572,0.566,0.559,0.552,0.544,0.536,0.527,0.518,0.509,0.499,0.489,0.478,0.467,0.456,0.445,0.433,0.421,0.409,0.396,0.384,0.371,0.358,0.346,0.332,0.32,0.307,0.293,0.28,0.268,0.254,0.242,0.229,0.216,0.204,0.191,0.179,0.167,0.155,0.144,0.133,0.122,0.111,0.101,0.091,0.082,0.073,0.064,0.056,0.048,0.041,0.034,0.028,0.022,0.017,0.013,0.009,0.006,0.003,0.001,0,0 25 | PARAM_BODY=1 26 | PARAM_BREATH=0,0.009,0.03,0.07,0.13,0.19,0.26,0.34,0.42,0.5,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,0.991,0.97,0.93,0.88,0.82,0.76,0.69,0.62,0.55,0.47,0.4,0.33,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0.005,0.02,0.04,0.07,0.11,0.16,0.21,0.26,0.32,0.38,0.44,0.5,0.56,0.62,0.68,0.74,0.79,0.84,0.89,0.93,0.96,0.98,0.995,1,0.993,0.975,0.94,0.91,0.86,0.8,0.74,0.68,0.61,0.54,0.47,0.41,0.34,0.28,0.22,0.17,0.12,0.08,0.04,0.02,0.005,0,0.005,0.02,0.04,0.07,0.11,0.16,0.21,0.26,0.32,0.38,0.44,0.5,0.56,0.62,0.68,0.74,0.79,0.84,0.89,0.93,0.96,0.98,0.995,1,0.993,0.974,0.94,0.91,0.86,0.8,0.74,0.68,0.61,0.54,0.46,0.39,0.32,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0.009,0.03,0.07,0.12,0.18,0.24,0.31,0.38,0.45,0.53,0.6,0.67,0.74,0.8,0.86,0.91,0.94,0.97,0.993,1,0.981,0.93,0.86,0.77,0.67,0.57,0.46,0.36,0.26,0.18,0.11,0.05,0.01,0 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.022,0.05,0.08,0.11,0.14,0.17,0.2,0.22,0.24,0.251,0.252,0.25,0.241,0.22,0.19,0.15,0.11,0.07,0.04,0.02,0.005,0,0.007,0.026,0.05,0.09,0.12,0.16,0.19,0.22,0.24,0.25,0.252,0.251,0.25,0.241,0.22,0.19,0.15,0.11,0.07,0.04,0.02,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 30 | PARAM_TAIL_ANGRY=0 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_HAND_R=0,-0.03,-0.11,-0.22,-0.35,-0.48,-0.61,-0.74,-0.84,-0.93,-0.98,-1,-0.98,-0.93,-0.84,-0.74,-0.62,-0.5,-0.38,-0.26,-0.16,-0.07,-0.02,0,-0.03,-0.11,-0.22,-0.35,-0.48,-0.61,-0.74,-0.84,-0.93,-0.98,-1,-0.987,-0.95,-0.9,-0.82,-0.74,-0.65,-0.55,-0.45,-0.35,-0.26,-0.18,-0.1,-0.05,-0.01,0,-0.02,-0.07,-0.15,-0.25,-0.37,-0.49,-0.6,-0.71,-0.81,-0.89,-0.95,-0.99,-1,-0.98,-0.93,-0.84,-0.74,-0.62,-0.5,-0.38,-0.26,-0.16,-0.07,-0.02,0,-0.02,-0.07,-0.16,-0.26,-0.38,-0.5,-0.62,-0.74,-0.84,-0.93,-0.98,-1,-0.981,-0.93,-0.86,-0.77,-0.67,-0.57,-0.46,-0.36,-0.26,-0.18,-0.11,-0.05,-0.01,0,-0.02,-0.07,-0.15,-0.25,-0.37,-0.49,-0.6,-0.71,-0.81,-0.89,-0.95,-0.99,-1,-0.98,-0.93,-0.84,-0.74,-0.62,-0.5,-0.38,-0.26,-0.16,-0.07,-0.02,0,-0.02,-0.07,-0.16,-0.26,-0.38,-0.5,-0.62,-0.74,-0.84,-0.93,-0.98,-1,-0.97,-0.88,-0.75,-0.6,-0.44,-0.3,-0.17,-0.08,-0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 34 | PARAM_HAND_L=0,0.03,0.11,0.22,0.35,0.48,0.61,0.74,0.84,0.93,0.98,1,0.98,0.93,0.84,0.74,0.62,0.5,0.38,0.26,0.16,0.07,0.02,0,0.03,0.11,0.22,0.35,0.48,0.61,0.74,0.84,0.93,0.98,1,0.987,0.95,0.9,0.82,0.74,0.65,0.55,0.45,0.35,0.26,0.18,0.1,0.05,0.01,0,0.02,0.07,0.15,0.25,0.37,0.49,0.6,0.71,0.81,0.89,0.95,0.99,1,0.98,0.93,0.84,0.74,0.62,0.5,0.38,0.26,0.16,0.07,0.02,0,0.02,0.07,0.16,0.26,0.38,0.5,0.62,0.74,0.84,0.93,0.98,1,0.981,0.93,0.86,0.77,0.67,0.57,0.46,0.36,0.26,0.18,0.11,0.05,0.01,0,0.02,0.07,0.15,0.25,0.37,0.49,0.6,0.71,0.81,0.89,0.95,0.99,1,0.98,0.93,0.84,0.74,0.62,0.5,0.38,0.26,0.16,0.07,0.02,0,0.02,0.07,0.16,0.26,0.38,0.5,0.62,0.74,0.84,0.93,0.98,1,0.97,0.88,0.75,0.6,0.44,0.3,0.17,0.08,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 35 | VISIBLE:PARTS_01_ARM_R=1 36 | VISIBLE:PARTS_01_ARM_L=1 37 | VISIBLE:PARTS_01_ARM_R_02=0 38 | VISIBLE:PARTS_01_ARM_L_02=0 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/mtn/05.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,-0.22,-0.82,-1.77,-2.98,-4.35,-5.88,-7.47,-9.03,-10.55,-11.93,-13.09,-14,-14.8,-15.46,-16.02,-16.52,-16.96,-17.36,-17.75,-18.13,-18.52,-18.93,-19.37,-19.85,-20.4,-21,-21.79,-22.62,-23.49,-24.36,-25.21,-26.02,-26.76,-27.41,-27.97,-28.41,-28.74,-28.93,-29,-28.53,-27.34,-25.83,-24.26,-22.85,-21.74,-21,-20.28,-19.66,-19.11,-18.62,-18.16,-17.72,-17.28,-16.83,-16.36,-15.85,-15.29,-14.67,-14,-13.18,-12.36,-11.53,-10.7,-9.89,-9.07,-8.26,-7.48,-6.71,-5.96,-5.25,-4.56,-3.9,-3.29,-2.71,-2.18,-1.7,-1.27,-0.9,-0.59,-0.33,-0.15,-0.04,0 9 | PARAM_ANGLE_Y=0,-0.6,-2.21,-4.69,-7.8,-11.26,-15,-18.74,-22.2,-25.31,-27.79,-29.4,-30,-29.62,-28.63,-27.18,-25.39,-23.4,-21.31,-19.21,-17.16,-15.25,-13.53,-12.1,-10.98,-10.25,-10,-10.4,-11.47,-13.08,-15.1,-17.33,-19.71,-22.04,-24.22,-26.14,-27.76,-28.98,-29.74,-30,-29.43,-27.79,-25.29,-22.07,-18.34,-14.27,-10,-4.15,1.05,5.75,9.96,13.59,16.74,19.38,21.51,23.2,24.47,25.34,25.84,26,25.87,25.49,24.88,24.07,23.09,21.94,20.64,19.27,17.77,16.21,14.63,13,11.37,9.79,8.23,6.73,5.36,4.06,2.91,1.93,1.12,0.51,0.13,0 10 | PARAM_ANGLE_Z=0,-0.18,-0.66,-1.41,-2.34,-3.38,-4.5,-5.62,-6.66,-7.59,-8.34,-8.82,-9,-8.83,-8.38,-7.73,-6.92,-6.03,-5.09,-4.14,-3.22,-2.36,-1.59,-0.95,-0.44,-0.11,0,-0.52,-1.91,-4.01,-6.63,-9.53,-12.62,-15.65,-18.48,-20.99,-23.09,-24.67,-25.66,-26,-24.22,-19.87,-14.47,-9.1,-4.6,-1.49,0,0.86,1.57,2.16,2.65,3.04,3.35,3.57,3.74,3.86,3.93,3.97,3.995,4,3.98,3.92,3.83,3.7,3.55,3.38,3.18,2.96,2.73,2.49,2.25,2,1.75,1.51,1.27,1.04,0.82,0.63,0.45,0.3,0.17,0.08,0.02,0 11 | PARAM_EYE_L_OPEN=0.75,0.69,0.56,0.4,0.24,0.11,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.19,0.38,0.56,0.69,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75 12 | PARAM_EYE_R_OPEN=0.75,0.69,0.56,0.4,0.24,0.11,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.19,0.38,0.56,0.69,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75 13 | PARAM_EYE_BALL_X=0 14 | PARAM_EYE_BALL_Y=0 15 | PARAM_EYE_FORM=-0.5 16 | PARAM_MOUTH_FORM=1,0.98,0.93,0.84,0.74,0.62,0.5,0.38,0.26,0.16,0.07,0.02,0,0.04,0.16,0.33,0.53,0.73,0.91,1.07,1.2,1.27,1.3,1.284,1.24,1.17,1.09,0.99,0.89,0.78,0.67,0.55,0.44,0.34,0.25,0.16,0.1,0.04,0.01,0,0.008,0.03,0.07,0.12,0.18,0.24,0.31,0.39,0.47,0.56,0.64,0.72,0.8,0.89,0.96,1.03,1.1,1.15,1.2,1.24,1.27,1.293,1.3,1.298,1.292,1.283,1.272,1.257,1.24,1.222,1.203,1.18,1.16,1.14,1.12,1.1,1.078,1.06,1.043,1.028,1.017,1.008,1.002,1 17 | PARAM_MOUTH_OPEN_Y=0,0.01,0.04,0.08,0.13,0.19,0.25,0.31,0.37,0.42,0.46,0.49,0.5,0.494,0.48,0.46,0.44,0.41,0.39,0.368,0.353,0.343,0.34,0.342,0.347,0.356,0.366,0.378,0.391,0.404,0.418,0.432,0.445,0.458,0.47,0.48,0.488,0.494,0.499,0.5,0.5,0.5,0.499,0.498,0.496,0.494,0.492,0.489,0.485,0.481,0.476,0.47,0.463,0.455,0.447,0.438,0.427,0.416,0.403,0.389,0.374,0.358,0.34,0.32,0.3,0.279,0.26,0.24,0.21,0.19,0.17,0.15,0.13,0.11,0.092,0.074,0.058,0.044,0.031,0.021,0.012,0.005,0.001,0 18 | PARAM_TONGUE=0,0.02,0.07,0.16,0.26,0.38,0.5,0.62,0.74,0.84,0.93,0.98,1,0.981,0.93,0.86,0.78,0.7,0.62,0.55,0.5,0.47,0.46,0.467,0.485,0.51,0.55,0.59,0.63,0.68,0.72,0.77,0.82,0.86,0.9,0.93,0.96,0.98,0.995,1,0.999,0.995,0.989,0.98,0.97,0.957,0.942,0.925,0.906,0.886,0.86,0.84,0.81,0.79,0.76,0.72,0.69,0.66,0.62,0.58,0.54,0.5,0.46,0.42,0.37,0.33,0.3,0.26,0.23,0.2,0.17,0.15,0.12,0.1,0.081,0.064,0.049,0.036,0.025,0.016,0.009,0.004,0.001,0 19 | PARAM_EAR_R=0,-0.03,-0.11,-0.22,-0.35,-0.48,-0.61,-0.74,-0.84,-0.93,-0.98,-1,-0.997,-0.989,-0.976,-0.959,-0.94,-0.91,-0.88,-0.85,-0.82,-0.78,-0.74,-0.7,-0.66,-0.62,-0.58,-0.53,-0.49,-0.45,-0.41,-0.37,-0.33,-0.3,-0.27,-0.24,-0.21,-0.19,-0.174,-0.161,-0.153,-0.15,-0.158,-0.18,-0.21,-0.26,-0.31,-0.37,-0.43,-0.5,-0.57,-0.63,-0.7,-0.76,-0.82,-0.87,-0.92,-0.95,-0.98,-0.994,-1,-0.994,-0.975,-0.95,-0.91,-0.86,-0.81,-0.76,-0.7,-0.64,-0.57,-0.51,-0.44,-0.38,-0.32,-0.26,-0.21,-0.16,-0.11,-0.07,-0.04,-0.02,-0.005,0 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=0,-0.03,-0.11,-0.22,-0.35,-0.48,-0.61,-0.74,-0.84,-0.93,-0.98,-1,-0.997,-0.989,-0.975,-0.957,-0.93,-0.91,-0.88,-0.85,-0.81,-0.77,-0.73,-0.69,-0.65,-0.6,-0.56,-0.52,-0.47,-0.43,-0.39,-0.35,-0.31,-0.27,-0.24,-0.21,-0.19,-0.16,-0.145,-0.131,-0.123,-0.12,-0.128,-0.15,-0.18,-0.23,-0.28,-0.35,-0.41,-0.48,-0.55,-0.62,-0.69,-0.75,-0.81,-0.87,-0.91,-0.95,-0.98,-0.994,-1,-0.994,-0.975,-0.95,-0.91,-0.86,-0.81,-0.76,-0.7,-0.64,-0.57,-0.51,-0.44,-0.38,-0.32,-0.26,-0.21,-0.16,-0.11,-0.07,-0.04,-0.02,-0.005,0 22 | PARAM_BODY_ANGLE_X=0,-0.08,-0.29,-0.63,-1.04,-1.5,-2,-2.5,-2.96,-3.38,-3.71,-3.92,-4,-3.93,-3.75,-3.49,-3.19,-2.88,-2.59,-2.35,-2.16,-2.04,-2,-2.03,-2.1,-2.21,-2.35,-2.52,-2.71,-2.9,-3.1,-3.29,-3.48,-3.65,-3.79,-3.9,-3.97,-4,-3.97,-3.87,-3.72,-3.53,-3.28,-3.01,-2.71,-2.38,-2.03,-1.68,-1.32,-0.97,-0.62,-0.29,0.01,0.28,0.53,0.72,0.87,0.97,1,0.995,0.98,0.96,0.93,0.89,0.84,0.8,0.74,0.69,0.63,0.57,0.51,0.45,0.39,0.33,0.27,0.22,0.18,0.13,0.09,0.06,0.04,0.016,0.004,0 23 | PARAM_BODY_ANGLE_Y=0,-0.12,-0.44,-0.94,-1.56,-2.25,-3,-3.75,-4.44,-5.06,-5.56,-5.88,-6,-5.93,-5.75,-5.49,-5.19,-4.88,-4.59,-4.35,-4.16,-4.04,-4,-4.03,-4.1,-4.21,-4.35,-4.52,-4.71,-4.9,-5.1,-5.29,-5.48,-5.65,-5.79,-5.9,-5.97,-6,-5.89,-5.59,-5.12,-4.48,-3.71,-2.82,-1.86,-0.81,0.3,1.44,2.56,3.7,4.81,5.86,6.82,7.71,8.48,9.12,9.59,9.89,10,9.95,9.8,9.57,9.26,8.88,8.45,7.95,7.42,6.86,6.28,5.69,5.07,4.47,3.88,3.3,2.75,2.23,1.75,1.32,0.94,0.61,0.35,0.16,0.04,0 24 | PARAM_BIG_FACE=0,0.016,0.06,0.12,0.2,0.29,0.38,0.48,0.56,0.64,0.7,0.75,0.78,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.789,0.787,0.784,0.781,0.776,0.771,0.765,0.757,0.748,0.738,0.727,0.714,0.7,0.685,0.668,0.649,0.63,0.61,0.58,0.56,0.53,0.5,0.47,0.43,0.4,0.36,0.33,0.3,0.27,0.24,0.21,0.19,0.16,0.14,0.12,0.09,0.076,0.059,0.044,0.031,0.02,0.011,0.005,0.001,0 25 | PARAM_BODY=1 26 | PARAM_BREATH=0,0.02,0.07,0.16,0.26,0.38,0.5,0.62,0.74,0.84,0.93,0.98,1,0.993,0.974,0.94,0.91,0.86,0.8,0.74,0.68,0.61,0.54,0.46,0.39,0.32,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0.007,0.026,0.06,0.09,0.14,0.2,0.26,0.32,0.39,0.46,0.54,0.61,0.68,0.74,0.8,0.86,0.91,0.94,0.97,0.993,1,0.996,0.985,0.966,0.94,0.91,0.88,0.84,0.8,0.75,0.71,0.66,0.61,0.56,0.51,0.46,0.4,0.36,0.31,0.26,0.22,0.18,0.14,0.1,0.07,0.05,0.028,0.013,0.003,0 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0,0.002,0.007,0.014,0.023,0.034,0.045,0.056,0.067,0.076,0.083,0.088,0.09,0.089,0.087,0.083,0.079,0.073,0.067,0.06,0.053,0.046,0.039,0.032,0.025,0.019,0.014,0.009,0.005,0.002,0.001,0,0.001,0.004,0.008,0.014,0.021,0.03,0.039,0.049,0.06,0.072,0.083,0.095,0.107,0.118,0.13,0.141,0.151,0.16,0.169,0.176,0.182,0.186,0.189,0.19,0.189,0.187,0.183,0.179,0.173,0.166,0.158,0.15,0.141,0.132,0.122,0.112,0.101,0.091,0.081,0.071,0.061,0.052,0.043,0.035,0.027,0.021,0.015,0.009,0.005,0.002,0.001,0 30 | PARAM_TAIL_ANGRY=0 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_HAND_R=0 34 | PARAM_HAND_L=0 35 | PARAM_ARM_L=0,-0.009,-0.03,-0.07,-0.11,-0.17,-0.22,-0.27,-0.32,-0.36,-0.4,-0.43,-0.444,-0.45,-0.446,-0.438,-0.427,-0.416,-0.406,-0.398,-0.392,-0.39,-0.392,-0.398,-0.407,-0.418,-0.432,-0.448,-0.465,-0.483,-0.503,-0.522,-0.543,-0.562,-0.582,-0.601,-0.619,-0.636,-0.651,-0.665,-0.677,-0.687,-0.694,-0.698,-0.7,-0.686,-0.65,-0.59,-0.52,-0.44,-0.35,-0.26,-0.18,-0.11,-0.05,-0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 36 | PARAM_HAND_L_MOVE=0 37 | VISIBLE:PARTS_01_ARM_R=0 38 | VISIBLE:PARTS_01_ARM_L=0 39 | VISIBLE:PARTS_01_ARM_R_02=1 40 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/mtn/07.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,-0.011,-0.04,-0.1,-0.19,-0.31,-0.46,-0.65,-0.87,-1.13,-1.43,-1.76,-2.13,-2.55,-2.99,-3.48,-4,-4.73,-5.44,-6.1,-6.71,-7.27,-7.76,-8.19,-8.53,-8.78,-8.94,-9,-8.82,-8.37,-7.73,-6.95,-6.09,-5.19,-4.26,-3.37,-2.5,-1.71,-1,-0.33,0.23,0.74,1.2,1.61,2.02,2.42,2.83,3.28,3.78,4.34,5,5.83,6.86,8.01,9.21,10.35,11.39,12.23,12.79,13,12.96,12.84,12.65,12.39,12.07,11.69,11.26,10.79,10.28,9.74,9.18,8.6,8,7.31,6.67,6.05,5.46,4.92,4.39,3.9,3.44,3.01,2.61,2.25,1.9,1.59,1.31,1.06,0.83,0.64,0.46,0.32,0.2,0.11,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 9 | PARAM_ANGLE_Y=0,-0.18,-0.68,-1.45,-2.44,-3.59,-4.86,-6.16,-7.49,-8.79,-10.03,-11.13,-12.11,-12.91,-13.5,-13.87,-14,-13.95,-13.77,-13.43,-12.88,-12.1,-11.07,-9.73,-8.11,-6.12,-3.79,-1,3.06,7.18,11.16,15.01,18.54,21.72,24.54,26.79,28.53,29.61,30,30,30,30,30,30,30,30,30,30,30,30,30,29.9,29.58,29,28.13,26.94,25.36,23.37,20.93,18,14.61,11.46,8.51,5.76,3.3,1.09,-0.82,-2.42,-3.72,-4.73,-5.44,-5.86,-6,-5.97,-5.88,-5.74,-5.55,-5.33,-5.06,-4.76,-4.45,-4.1,-3.74,-3.38,-3,-2.62,-2.26,-1.9,-1.55,-1.24,-0.94,-0.67,-0.45,-0.26,-0.12,-0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 10 | PARAM_ANGLE_Z=0,-0.002,-0.009,-0.02,-0.034,-0.051,-0.07,-0.1,-0.12,-0.15,-0.18,-0.21,-0.25,-0.28,-0.32,-0.36,-0.4,-0.44,-0.48,-0.51,-0.55,-0.59,-0.63,-0.67,-0.7,-0.74,-0.77,-0.81,-0.84,-0.86,-0.89,-0.91,-0.94,-0.955,-0.971,-0.983,-0.992,-0.998,-1,-0.86,-0.49,0.09,0.82,1.63,2.5,3.37,4.18,4.91,5.49,5.86,6,5.991,5.97,5.92,5.87,5.79,5.71,5.61,5.5,5.38,5.24,5.1,4.95,4.79,4.62,4.45,4.27,4.09,3.9,3.71,3.52,3.32,3.12,2.93,2.73,2.54,2.34,2.15,1.96,1.78,1.61,1.44,1.27,1.11,0.96,0.82,0.69,0.56,0.45,0.35,0.26,0.18,0.12,0.07,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 11 | PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.93,0.79,0.62,0.43,0.27,0.13,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.07,0.14,0.23,0.33,0.43,0.54,0.64,0.74,0.82,0.89,0.95,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 12 | PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.93,0.79,0.62,0.43,0.27,0.13,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.07,0.14,0.23,0.33,0.43,0.54,0.64,0.74,0.82,0.89,0.95,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 13 | PARAM_EYE_BALL_X=0,0.007,0.028,0.06,0.1,0.15,0.2,0.26,0.31,0.38,0.44,0.5,0.56,0.61,0.66,0.71,0.75,0.78,0.81,0.824,0.83,0.823,0.8,0.77,0.72,0.67,0.62,0.55,0.48,0.42,0.35,0.28,0.21,0.16,0.11,0.06,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 14 | PARAM_EYE_BALL_Y=0,0.009,0.03,0.07,0.12,0.18,0.24,0.31,0.38,0.45,0.53,0.6,0.67,0.74,0.8,0.86,0.91,0.94,0.97,0.993,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.998,0.993,0.985,0.975,0.961,0.946,0.927,0.907,0.88,0.86,0.84,0.81,0.78,0.75,0.72,0.69,0.66,0.62,0.59,0.55,0.52,0.49,0.45,0.42,0.39,0.35,0.32,0.29,0.26,0.23,0.2,0.18,0.15,0.13,0.1,0.08,0.065,0.049,0.034,0.022,0.013,0.006,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 15 | PARAM_EYE_FORM=0 16 | PARAM_MOUTH_FORM=0 17 | PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.03,0.07,0.13,0.19,0.26,0.34,0.42,0.5,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.93,0.85,0.75,0.63,0.51,0.4,0.29,0.19,0.11,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 18 | PARAM_TONGUE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.019,0.04,0.07,0.11,0.15,0.19,0.24,0.29,0.35,0.4,0.45,0.5,0.55,0.59,0.63,0.66,0.69,0.71,0.731,0.746,0.759,0.769,0.777,0.782,0.786,0.789,0.79,0.791,0.791,0.791,0.791,0.79,0.79,0.79,0.79,0.79,0.789,0.789,0.788,0.787,0.786,0.785,0.784,0.782,0.78,0.777,0.774,0.771,0.768,0.764,0.759,0.755,0.749,0.744,0.738,0.731,0.724,0.716,0.708,0.699,0.69,0.67,0.62,0.57,0.49,0.42,0.34,0.26,0.19,0.13,0.07,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 19 | PARAM_EAR_R=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.64,0.07,-0.46,-0.85,-1,-0.64,-0.07,0.46,0.85,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=1 22 | PARAM_BODY_ANGLE_X=0,-0.06,-0.24,-0.52,-0.87,-1.28,-1.73,-2.2,-2.68,-3.14,-3.58,-3.98,-4.33,-4.61,-4.82,-4.96,-5,-4.995,-4.979,-4.95,-4.9,-4.84,-4.76,-4.66,-4.53,-4.38,-4.21,-4,-3.67,-3.29,-2.88,-2.45,-2.03,-1.62,-1.22,-0.86,-0.52,-0.24,0,0.22,0.41,0.59,0.75,0.91,1.06,1.2,1.35,1.5,1.66,1.82,2,2.18,2.35,2.51,2.65,2.77,2.86,2.94,2.98,3,2.97,2.89,2.77,2.62,2.44,2.25,2.04,1.84,1.64,1.45,1.28,1.13,1,0.86,0.73,0.62,0.52,0.43,0.36,0.29,0.24,0.19,0.15,0.11,0.08,0.06,0.04,0.026,0.015,0.008,0.003,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 23 | PARAM_BODY_ANGLE_Y=0,-0.1,-0.39,-0.83,-1.39,-2.05,-2.78,-3.52,-4.28,-5.02,-5.73,-6.36,-6.92,-7.38,-7.72,-7.93,-8,-7.983,-7.93,-7.83,-7.69,-7.49,-7.24,-6.93,-6.56,-6.11,-5.6,-5,-4.14,-3.26,-2.37,-1.44,-0.49,0.49,1.52,2.56,3.67,4.8,6,7.36,8.72,10.12,11.48,12.77,13.99,15.11,16.06,16.87,17.48,17.86,18,17.81,17.28,16.43,15.31,13.98,12.43,10.73,8.9,7,5.02,3.3,1.79,0.49,-0.61,-1.53,-2.27,-2.86,-3.3,-3.63,-3.84,-3.96,-4,-3.97,-3.87,-3.72,-3.53,-3.3,-3.04,-2.77,-2.48,-2.19,-1.89,-1.6,-1.32,-1.05,-0.8,-0.57,-0.38,-0.22,-0.1,-0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 24 | PARAM_BIG_FACE=0 25 | PARAM_BODY=1 26 | PARAM_BREATH=0,0.006,0.025,0.05,0.09,0.14,0.19,0.24,0.3,0.36,0.43,0.49,0.56,0.62,0.68,0.74,0.79,0.84,0.89,0.93,0.96,0.98,0.995,1,0.993,0.975,0.94,0.91,0.86,0.8,0.74,0.68,0.61,0.54,0.47,0.41,0.34,0.28,0.22,0.17,0.12,0.08,0.04,0.02,0.005,0,0.004,0.016,0.034,0.06,0.09,0.13,0.17,0.21,0.26,0.31,0.36,0.42,0.47,0.53,0.58,0.64,0.69,0.74,0.79,0.83,0.87,0.91,0.94,0.97,0.984,0.996,1,0.995,0.98,0.96,0.93,0.89,0.84,0.79,0.74,0.68,0.62,0.56,0.5,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0,0.004,0.016,0.034,0.06,0.09,0.13,0.17,0.21,0.26,0.31,0.36,0.42,0.47,0.53,0.58,0.64,0.69,0.74,0.79,0.83,0.87,0.91,0.94,0.97,0.984 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0 30 | PARAM_TAIL_ANGRY=0 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_HAND_R=0 34 | PARAM_HAND_L=0 35 | PARAM_ARM_L=0 36 | VISIBLE:PARTS_01_ARM_R=0 37 | VISIBLE:PARTS_01_ARM_L=0 38 | VISIBLE:PARTS_01_ARM_R_02=1 39 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/hijiki/mtn/08.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,0.16,0.63,1.35,2.28,3.38,4.58,5.85,7.15,8.42,9.62,10.72,11.65,12.37,12.84,13,13.001,12.999,12.992,12.973,12.94,12.88,12.81,12.7,12.55,12.37,12.15,11.88,11.55,11.18,10.74,10.23,9.65,9,8.06,6.66,4.86,2.78,0.44,-2.01,-4.53,-7.05,-9.48,-11.75,-13.81,-15.52,-16.86,-17.7,-18,-17.97,-17.87,-17.69,-17.45,-17.13,-16.74,-16.28,-15.75,-15.14,-14.46,-13.71,-12.89,-12,-11.07,-10.05,-9,-7.7,-6.5,-5.38,-4.34,-3.42,-2.6,-1.89,-1.3,-0.83,-0.46,-0.2,-0.05,0 9 | PARAM_ANGLE_Y=0,0.18,0.7,1.53,2.61,3.94,5.43,7.07,8.82,10.64,12.5,14.38,16.19,17.94,19.55,21,22.3,23.47,24.52,25.45,26.26,26.97,27.6,28.13,28.58,28.95,29.25,29.49,29.67,29.81,29.9,29.96,29.99,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.74,29,27.84,26.33,24.55,22.55,20.45,18.25,16.03,13.83,11.75,9.77,7.96,6.4,5.05,4,2.97,2.15,1.5,0.99,0.61,0.35,0.17,0.06,0.01,-0.014,-0.013,-0.005,0 10 | PARAM_ANGLE_Z=0,-0.13,-0.5,-1.09,-1.85,-2.76,-3.76,-4.84,-5.95,-7.07,-8.16,-9.2,-10.13,-10.94,-11.57,-12,-12.31,-12.61,-12.89,-13.16,-13.41,-13.65,-13.87,-14.07,-14.27,-14.45,-14.62,-14.77,-14.92,-15.05,-15.17,-15.28,-15.38,-15.47,-15.56,-15.63,-15.69,-15.75,-15.8,-15.85,-15.88,-15.91,-15.94,-15.96,-15.976,-15.987,-15.995,-15.999,-16,-15.94,-15.76,-15.46,-15.08,-14.61,-14.06,-13.45,-12.78,-12.07,-11.32,-10.54,-9.75,-8.92,-8.11,-7.29,-6.47,-5.69,-4.91,-4.17,-3.47,-2.82,-2.22,-1.67,-1.19,-0.78,-0.45,-0.2,-0.05,0 11 | PARAM_EYE_L_OPEN=1 12 | PARAM_EYE_R_OPEN=1 13 | PARAM_EYE_BALL_X=0,0.013,0.05,0.1,0.16,0.24,0.32,0.4,0.49,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,0.995,0.979,0.95,0.92,0.88,0.83,0.77,0.71,0.65,0.58,0.51,0.43,0.36,0.29,0.21,0.14,0.06,-0.02,-0.09,-0.16,-0.23,-0.29,-0.35,-0.4,-0.46,-0.51,-0.55,-0.6,-0.64,-0.68,-0.71,-0.74,-0.77,-0.8,-0.83,-0.85,-0.869,-0.887,-0.902,-0.915,-0.926,-0.935,-0.942,-0.946,-0.949,-0.95,-0.932,-0.88,-0.82,-0.73,-0.64,-0.54,-0.44,-0.34,-0.25,-0.17,-0.1,-0.05,-0.01,0 14 | PARAM_EYE_BALL_Y=0,0.013,0.05,0.1,0.16,0.24,0.32,0.4,0.49,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.981,0.93,0.86,0.77,0.67,0.57,0.46,0.36,0.26,0.18,0.11,0.05,0.01,0 15 | PARAM_EYE_FORM=0,-0.006,-0.023,-0.05,-0.08,-0.12,-0.16,-0.2,-0.24,-0.29,-0.33,-0.37,-0.4,-0.44,-0.46,-0.483,-0.496,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.49,-0.47,-0.43,-0.38,-0.33,-0.28,-0.23,-0.18,-0.13,-0.09,-0.05,-0.02,-0.006,0 16 | PARAM_MOUTH_FORM=0,0.003,0.011,0.025,0.043,0.07,0.09,0.12,0.16,0.19,0.23,0.28,0.32,0.36,0.41,0.46,0.51,0.55,0.6,0.65,0.7,0.74,0.78,0.83,0.87,0.9,0.94,0.97,0.99,1.02,1.035,1.049,1.057,1.06,0.8,0.38,0.09,0,0.011,0.05,0.14,0.26,0.45,0.73,1.01,1.29,1.52,1.67,1.73,1.723,1.704,1.67,1.63,1.58,1.52,1.45,1.38,1.3,1.22,1.14,1.05,0.96,0.88,0.79,0.7,0.61,0.53,0.45,0.38,0.31,0.24,0.18,0.13,0.08,0.05,0.02,0.006,0 17 | PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.22,0.31,0.34,0.341,0.34,0.337,0.331,0.32,0.28,0.22,0.15,0.08,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 18 | PARAM_TONGUE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0.3,0.44,0.51,0.56,0.573,0.579,0.58,0.58,0.54,0.43,0.29,0.15,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 19 | PARAM_EAR_R=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.47,-0.47,-1,-0.64,-0.07,0.46,0.85,1,0.47,-0.47,-1,-0.47,0.47,1,1,1,1 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=1 22 | PARAM_BODY_ANGLE_X=0,-0.005,-0.02,-0.04,-0.08,-0.12,-0.17,-0.23,-0.3,-0.37,-0.45,-0.53,-0.63,-0.72,-0.82,-0.93,-1.04,-1.15,-1.27,-1.38,-1.5,-1.63,-1.75,-1.87,-2,-2.13,-2.25,-2.37,-2.5,-2.62,-2.73,-2.85,-2.96,-3.07,-3.18,-3.28,-3.38,-3.47,-3.55,-3.63,-3.7,-3.77,-3.83,-3.88,-3.92,-3.96,-3.98,-3.995,-4,-3.984,-3.94,-3.87,-3.77,-3.65,-3.52,-3.36,-3.2,-3.02,-2.83,-2.63,-2.44,-2.23,-2.03,-1.82,-1.62,-1.42,-1.23,-1.04,-0.87,-0.71,-0.55,-0.42,-0.3,-0.19,-0.11,-0.05,-0.01,0 23 | PARAM_BODY_ANGLE_Y=0,0.26,0.95,1.99,3.31,4.82,6.47,8.23,10.03,11.85,13.67,15.39,17.06,18.62,20,21.41,22.68,23.8,24.82,25.71,26.49,27.18,27.76,28.26,28.68,29.02,29.3,29.52,29.69,29.82,29.91,29.96,29.99,30,29.94,29.78,29.51,29.13,28.65,28.08,27.42,26.66,25.81,24.88,23.85,22.76,21.57,20.32,19,17.57,16.23,14.93,13.71,12.55,11.45,10.4,9.42,8.49,7.62,6.81,6.05,5.32,4.66,4.04,3.46,2.94,2.45,2.02,1.63,1.29,0.98,0.72,0.5,0.32,0.18,0.08,0.02,0 24 | PARAM_BIG_FACE=0 25 | PARAM_BODY=1 26 | PARAM_BREATH=0,0.019,0.07,0.14,0.23,0.33,0.43,0.54,0.64,0.74,0.82,0.89,0.95,0.99,1,0.987,0.95,0.9,0.82,0.74,0.65,0.55,0.45,0.35,0.26,0.18,0.1,0.05,0.01,0,0.013,0.05,0.1,0.16,0.24,0.32,0.4,0.49,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,0.987,0.95,0.9,0.83,0.74,0.65,0.56,0.46,0.37,0.28,0.2,0.13,0.08,0.04,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.019,0.039,0.06,0.09,0.12,0.14,0.17,0.2,0.22,0.24,0.251,0.252,0.25,0.241,0.22,0.19,0.15,0.11,0.07,0.04,0.02,0.005,0,0.007,0.026,0.05,0.09,0.12,0.16,0.19,0.22,0.24,0.25,0.252,0.251,0.25,0.241,0.22,0.19,0.15,0.11,0.07,0.04,0.02,0.005,0,0,0,0,0,0,0 30 | PARAM_TAIL_ANGRY=0 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_ARM_L=0 34 | PARAM_HAND_L_MOVE=0 35 | PARAM_ARM_R_MOVE=0 36 | ARM_R_MOVE_02=0 37 | VISIBLE:PARTS_01_ARM_R=0 38 | VISIBLE:PARTS_01_ARM_L=0 39 | VISIBLE:PARTS_01_ARM_R_02=1 40 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/tororo/moc/tororo.2048/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/live2d/tororo/moc/tororo.2048/texture_00.png -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/tororo/moc/tororo.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenyating/vuepress-theme-ting/abacf04d273015810727cd907597f9ee93ee1415/docs/.vuepress/public/live2d/tororo/moc/tororo.moc -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/tororo/mtn/02.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0.01,0.04,0.08,0.15,0.22,0.31,0.41,0.53,0.65,0.78,0.91,1.06,1.2,1.35,1.5,1.65,1.8,1.94,2.09,2.22,2.35,2.47,2.59,2.69,2.78,2.85,2.92,2.96,2.99,3,2.97,2.9,2.79,2.64,2.47,2.28,2.08,1.86,1.64,1.42,1.2,0.99,0.78,0.6,0.43,0.28,0.17,0.08,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0 9 | PARAM_ANGLE_Y=0,-0.98,-3.11,-5.76,-8.51,-11.02,-13.1,-14.48,-15,-14.85,-14.43,-13.74,-12.81,-11.65,-10.31,-8.79,-7.11,-5.29,-3.35,-1.28,0.83,3.04,5.26,7.5,9.74,11.96,14.17,16.28,18.35,20.29,22.11,23.79,25.31,26.65,27.81,28.74,29.43,29.85,30,29.74,29,27.89,26.44,24.74,22.81,20.75,18.62,16.4,14.17,11.99,9.86,7.84,6,4.3,2.85,1.66,0.77,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0 10 | PARAM_ANGLE_Z=0,-0.52,-1.66,-3.14,-4.76,-6.34,-7.82,-9.06,-10,-10.82,-11.61,-12.37,-13.07,-13.76,-14.39,-15,-15.57,-16.1,-16.61,-17.08,-17.52,-17.94,-18.32,-18.67,-18.99,-19.29,-19.56,-19.81,-20.03,-20.22,-20.39,-20.54,-20.67,-20.77,-20.86,-20.92,-20.97,-20.99,-21,-20.82,-20.3,-19.52,-18.51,-17.32,-15.97,-14.53,-13.03,-11.48,-9.92,-8.39,-6.91,-5.49,-4.2,-3.01,-1.99,-1.16,-0.54,-0.14,0,0,0,0,0,0,0,0,0,0,0,0,0 11 | PARAM_EYE_L_OPEN=1,0.97,0.91,0.83,0.76,0.68,0.62,0.58,0.57,0.571,0.575,0.582,0.591,0.602,0.615,0.629,0.645,0.663,0.681,0.701,0.721,0.74,0.76,0.79,0.81,0.83,0.85,0.869,0.889,0.907,0.925,0.941,0.955,0.968,0.979,0.988,0.995,0.999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 12 | PARAM_EYE_R_OPEN=1,0.97,0.91,0.83,0.76,0.68,0.62,0.58,0.57,0.571,0.575,0.582,0.591,0.602,0.615,0.629,0.645,0.663,0.681,0.701,0.721,0.74,0.76,0.79,0.81,0.83,0.85,0.869,0.889,0.907,0.925,0.941,0.955,0.968,0.979,0.988,0.995,0.999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 13 | PARAM_EYE_BALL_X=0 14 | PARAM_EYE_BALL_Y=0 15 | PARAM_EYE_FORM=0,-0.07,-0.21,-0.38,-0.57,-0.73,-0.87,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.97,-0.93,-0.88,-0.82,-0.76,-0.69,-0.62,-0.55,-0.47,-0.4,-0.33,-0.26,-0.2,-0.14,-0.09,-0.06,-0.03,-0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 16 | PARAM_MOUTH_FORM=1,0.93,0.79,0.62,0.43,0.27,0.13,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.07,0.16,0.26,0.38,0.5,0.62,0.74,0.84,0.93,0.98,1 17 | PARAM_MOUTH_OPEN_Y=0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.88,0.82,0.76,0.69,0.62,0.55,0.47,0.4,0.33,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 18 | PARAM_TONGUE=0,0.05,0.16,0.29,0.43,0.55,0.66,0.72,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.744,0.725,0.7,0.66,0.62,0.57,0.52,0.47,0.41,0.35,0.3,0.25,0.2,0.15,0.11,0.07,0.04,0.02,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0 19 | PARAM_EAR_R=0,-0.04,-0.13,-0.24,-0.35,-0.46,-0.56,-0.63,-0.67,-0.7,-0.72,-0.74,-0.77,-0.79,-0.807,-0.826,-0.843,-0.859,-0.874,-0.888,-0.901,-0.913,-0.924,-0.934,-0.943,-0.952,-0.959,-0.966,-0.972,-0.978,-0.982,-0.986,-0.99,-0.993,-0.995,-0.997,-0.998,-0.999,-1,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.67,-0.59,-0.51,-0.43,-0.35,-0.28,-0.21,-0.15,-0.1,-0.06,-0.03,-0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=0,-0.03,-0.09,-0.18,-0.27,-0.35,-0.43,-0.5,-0.54,-0.58,-0.61,-0.64,-0.67,-0.7,-0.73,-0.75,-0.78,-0.8,-0.82,-0.84,-0.859,-0.875,-0.891,-0.905,-0.918,-0.93,-0.941,-0.951,-0.959,-0.967,-0.974,-0.98,-0.985,-0.989,-0.993,-0.995,-0.997,-0.999,-1,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.67,-0.59,-0.51,-0.43,-0.35,-0.28,-0.21,-0.15,-0.1,-0.06,-0.03,-0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 22 | PARAM_BODY_ANGLE_X=0 23 | PARAM_BODY_ANGLE_Y=0,-1.18,-3.73,-6.91,-10.21,-13.22,-15.72,-17.38,-18,-18,-18,-18,-17.998,-17.995,-17.99,-17.982,-17.972,-17.957,-17.94,-17.92,-17.89,-17.86,-17.82,-17.77,-17.72,-17.66,-17.59,-17.52,-17.43,-17.34,-17.24,-17.12,-17,-16.86,-16.72,-16.56,-16.38,-16.2,-16,-15.66,-15.11,-14.41,-13.56,-12.6,-11.56,-10.46,-9.35,-8.2,-7.06,-5.96,-4.89,-3.88,-2.96,-2.11,-1.4,-0.81,-0.38,-0.1,0,0,0,0,0,0,0,0,0,0,0,0,0 24 | PARAM_BIG_FACE=0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.88,0.82,0.76,0.69,0.62,0.55,0.47,0.4,0.33,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 25 | PARAM_BODY=1,0.95,0.82,0.67,0.52,0.4,0.33,0.3,0.301,0.302,0.305,0.308,0.313,0.318,0.324,0.331,0.339,0.347,0.357,0.366,0.377,0.388,0.4,0.412,0.425,0.439,0.453,0.467,0.481,0.496,0.512,0.527,0.543,0.559,0.576,0.592,0.609,0.625,0.642,0.658,0.675,0.691,0.708,0.724,0.741,0.757,0.773,0.788,0.804,0.819,0.833,0.847,0.861,0.875,0.888,0.9,0.912,0.923,0.934,0.943,0.953,0.961,0.969,0.976,0.982,0.987,0.992,0.995,0.998,0.999,1 26 | PARAM_BREATH=0,0.07,0.21,0.38,0.57,0.73,0.87,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.991,0.97,0.93,0.87,0.81,0.74,0.67,0.59,0.51,0.43,0.35,0.28,0.21,0.15,0.1,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0,0.03,0.11,0.22,0.35,0.49,0.62,0.73,0.82,0.87,0.9,0.91,0.919,0.927,0.935,0.942,0.948,0.955,0.96,0.965,0.97,0.974,0.978,0.982,0.985,0.987,0.99,0.992,0.993,0.995,0.996,0.997,0.998,0.999,0.999,1,1,1,1,0.991,0.97,0.93,0.88,0.82,0.76,0.69,0.62,0.55,0.47,0.4,0.33,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0 30 | PARAM_TAIL_ANGRY=0,0.03,0.12,0.25,0.4,0.56,0.7,0.83,0.92,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_HAND_R=0 34 | PARAM_HAND_L=0 35 | PARAM_ARM_L=0 36 | PARAM_HAND_L_MOVE=0 37 | PARAM_ARM_R_MOVE=0 38 | ARM_R_MOVE_02=0 39 | VISIBLE:PARTS_01_ARM_R=0 40 | VISIBLE:PARTS_01_ARM_L=0 41 | VISIBLE:PARTS_01_ARM_R_02=1 42 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/tororo/mtn/03.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.006,-0.025,-0.05,-0.09,-0.14,-0.19,-0.24,-0.3,-0.36,-0.43,-0.49,-0.56,-0.62,-0.68,-0.74,-0.79,-0.84,-0.89,-0.93,-0.96,-0.98,-0.995,-1,-0.991,-0.97,-0.93,-0.87,-0.81,-0.74,-0.67,-0.59,-0.51,-0.43,-0.35,-0.28,-0.21,-0.15,-0.1,-0.06,-0.03,-0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 9 | PARAM_ANGLE_Y=0,0,0,0,0,0,0,0,0,0,0,0,0.27,1.03,2.21,3.77,5.61,7.69,9.95,12.29,14.69,17.1,19.42,21.6,23.64,25.44,27.01,28.28,29.21,29.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.71,28.89,27.58,25.93,23.88,21.61,19.11,16.44,13.63,10.79,7.86,4.97,2.14,-0.64,-3.24,-5.68,-7.92,-9.93,-11.65,-13.07,-14.12,-14.77,-15,-14.87,-14.48,-13.9,-13.12,-12.2,-11.16,-10.03,-8.86,-7.65,-6.45,-5.29,-4.2,-3.18,-2.28,-1.49,-0.86,-0.39,-0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 10 | PARAM_ANGLE_Z=0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.09,0.19,0.35,0.54,0.79,1.08,1.41,1.79,2.23,2.7,3.21,3.77,4.38,5.02,5.71,6.43,7.2,8,8.94,9.83,10.68,11.47,12.2,12.87,13.47,14.01,14.48,14.89,15.23,15.51,15.73,15.88,15.97,16,15.986,15.95,15.88,15.77,15.64,15.48,15.28,15.05,14.78,14.48,14.14,13.77,13.36,12.91,12.42,11.9,11.35,10.74,10.11,9.44,8.74,8,7.12,6.26,5.43,4.66,3.9,3.2,2.52,1.88,1.28,0.72,0.19,-0.31,-0.76,-1.17,-1.54,-1.88,-2.17,-2.42,-2.62,-2.79,-2.91,-2.98,-3,-2.97,-2.9,-2.78,-2.62,-2.44,-2.23,-2.01,-1.77,-1.53,-1.29,-1.06,-0.84,-0.64,-0.46,-0.3,-0.17,-0.08,-0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 11 | PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 12 | PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0.64,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 13 | PARAM_EYE_BALL_X=0 14 | PARAM_EYE_BALL_Y=0 15 | PARAM_EYE_FORM=1 16 | PARAM_MOUTH_FORM=1,0.97,0.89,0.78,0.65,0.52,0.39,0.26,0.16,0.07,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 17 | PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.026,0.06,0.1,0.14,0.19,0.25,0.31,0.38,0.44,0.5,0.56,0.62,0.67,0.72,0.76,0.79,0.81,0.83,0.843,0.855,0.867,0.878,0.888,0.898,0.907,0.916,0.924,0.931,0.938,0.944,0.95,0.956,0.961,0.965,0.97,0.973,0.977,0.98,0.983,0.986,0.988,0.99,0.992,0.993,0.995,0.996,0.997,0.998,0.998,0.999,0.999,1,1,1,1,1,0.994,0.975,0.95,0.91,0.86,0.81,0.76,0.7,0.64,0.57,0.51,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 18 | PARAM_TONGUE=0,0,0,0,0,0,0,0,0,0,0,0,0.04,0.1,0.15,0.18,0.21,0.24,0.26,0.29,0.31,0.34,0.36,0.38,0.41,0.43,0.45,0.48,0.5,0.53,0.55,0.58,0.6,0.62,0.642,0.66,0.677,0.691,0.704,0.715,0.725,0.733,0.739,0.744,0.747,0.749,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.747,0.74,0.728,0.713,0.694,0.67,0.65,0.63,0.6,0.57,0.55,0.52,0.5,0.47,0.45,0.42,0.405,0.386,0.37,0.358,0.348,0.342,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.34,0.339,0.339,0.338,0.338,0.337,0.336,0.335,0.335,0.334,0.333,0.331,0.33,0.329,0.328,0.327,0.326,0.325,0.323,0.322,0.321,0.32,0.319,0.318,0.317,0.316,0.315,0.314,0.313,0.313,0.312,0.311,0.311,0.311,0.31,0.31,0.31 19 | PARAM_EAR_R=1,0.998,0.993,0.985,0.972,0.956,0.936,0.91,0.88,0.85,0.81,0.77,0.72,0.67,0.62,0.56,0.49,0.42,0.35,0.27,0.18,0.09,0,-0.1,-0.2,-0.3,-0.4,-0.49,-0.58,-0.66,-0.73,-0.8,-0.86,-0.91,-0.95,-0.98,-0.994,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.91,-0.8,-0.68,-0.53,-0.37,-0.2,-0.02,0.15,0.32,0.47,0.62,0.75,0.85,0.93,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=1,0.998,0.993,0.985,0.972,0.956,0.936,0.91,0.88,0.85,0.81,0.77,0.72,0.67,0.62,0.56,0.49,0.42,0.35,0.27,0.18,0.09,0,-0.1,-0.2,-0.3,-0.4,-0.49,-0.58,-0.66,-0.73,-0.8,-0.86,-0.91,-0.95,-0.98,-0.994,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.91,-0.8,-0.68,-0.53,-0.37,-0.2,-0.02,0.15,0.32,0.47,0.62,0.75,0.85,0.93,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 22 | PARAM_BODY_ANGLE_X=0 23 | PARAM_BODY_ANGLE_Y=0 24 | PARAM_BIG_FACE=0 25 | PARAM_BODY=1 26 | PARAM_BREATH=0 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.03,0.07,0.12,0.17,0.23,0.3,0.36,0.43,0.49,0.55,0.61,0.66,0.7,0.73,0.75,0.768,0.786,0.802,0.818,0.832,0.846,0.86,0.872,0.884,0.895,0.905,0.914,0.923,0.931,0.939,0.946,0.953,0.959,0.964,0.969,0.973,0.977,0.981,0.984,0.987,0.99,0.992,0.994,0.995,0.996,0.998,0.998,0.999,0.999,1,1,1,0.987,0.95,0.9,0.84,0.76,0.68,0.6,0.51,0.42,0.34,0.26,0.19,0.13,0.07,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 30 | PARAM_TAIL_ANGRY=0 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_HAND_R=0 34 | PARAM_HAND_L=0 35 | PARAM_ARM_L=0 36 | VISIBLE:PARTS_01_ARM_R=0 37 | VISIBLE:PARTS_01_ARM_L=0 38 | VISIBLE:PARTS_01_ARM_R_02=1 39 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/tororo/mtn/05.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,-0.22,-0.82,-1.77,-2.98,-4.35,-5.88,-7.47,-9.03,-10.55,-11.93,-13.09,-14,-14.8,-15.46,-16.02,-16.52,-16.96,-17.36,-17.75,-18.13,-18.52,-18.93,-19.37,-19.85,-20.4,-21,-21.79,-22.62,-23.49,-24.36,-25.21,-26.02,-26.76,-27.41,-27.97,-28.41,-28.74,-28.93,-29,-28.53,-27.34,-25.83,-24.26,-22.85,-21.74,-21,-20.28,-19.66,-19.11,-18.62,-18.16,-17.72,-17.28,-16.83,-16.36,-15.85,-15.29,-14.67,-14,-13.18,-12.36,-11.53,-10.7,-9.89,-9.07,-8.26,-7.48,-6.71,-5.96,-5.25,-4.56,-3.9,-3.29,-2.71,-2.18,-1.7,-1.27,-0.9,-0.59,-0.33,-0.15,-0.04,0 9 | PARAM_ANGLE_Y=0,-0.6,-2.21,-4.69,-7.8,-11.26,-15,-18.74,-22.2,-25.31,-27.79,-29.4,-30,-29.62,-28.63,-27.18,-25.39,-23.4,-21.31,-19.21,-17.16,-15.25,-13.53,-12.1,-10.98,-10.25,-10,-10.4,-11.47,-13.08,-15.1,-17.33,-19.71,-22.04,-24.22,-26.14,-27.76,-28.98,-29.74,-30,-29.43,-27.79,-25.29,-22.07,-18.34,-14.27,-10,-4.15,1.05,5.75,9.96,13.59,16.74,19.38,21.51,23.2,24.47,25.34,25.84,26,25.87,25.49,24.88,24.07,23.09,21.94,20.64,19.27,17.77,16.21,14.63,13,11.37,9.79,8.23,6.73,5.36,4.06,2.91,1.93,1.12,0.51,0.13,0 10 | PARAM_ANGLE_Z=0,-0.18,-0.66,-1.41,-2.34,-3.38,-4.5,-5.62,-6.66,-7.59,-8.34,-8.82,-9,-8.83,-8.38,-7.73,-6.92,-6.03,-5.09,-4.14,-3.22,-2.36,-1.59,-0.95,-0.44,-0.11,0,-0.52,-1.91,-4.01,-6.63,-9.53,-12.62,-15.65,-18.48,-20.99,-23.09,-24.67,-25.66,-26,-24.22,-19.87,-14.47,-9.1,-4.6,-1.49,0,0.86,1.57,2.16,2.65,3.04,3.35,3.57,3.74,3.86,3.93,3.97,3.995,4,3.98,3.92,3.83,3.7,3.55,3.38,3.18,2.96,2.73,2.49,2.25,2,1.75,1.51,1.27,1.04,0.82,0.63,0.45,0.3,0.17,0.08,0.02,0 11 | PARAM_EYE_L_OPEN=0.75,0.69,0.56,0.4,0.24,0.11,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.19,0.38,0.56,0.69,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75 12 | PARAM_EYE_R_OPEN=0.75,0.69,0.56,0.4,0.24,0.11,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.19,0.38,0.56,0.69,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75 13 | PARAM_EYE_BALL_X=0 14 | PARAM_EYE_BALL_Y=0 15 | PARAM_EYE_FORM=-0.5 16 | PARAM_MOUTH_FORM=1,0.98,0.93,0.84,0.74,0.62,0.5,0.38,0.26,0.16,0.07,0.02,0,0.04,0.16,0.33,0.53,0.73,0.91,1.07,1.2,1.27,1.3,1.284,1.24,1.17,1.09,0.99,0.89,0.78,0.67,0.55,0.44,0.34,0.25,0.16,0.1,0.04,0.01,0,0.008,0.03,0.07,0.12,0.18,0.24,0.31,0.39,0.47,0.56,0.64,0.72,0.8,0.89,0.96,1.03,1.1,1.15,1.2,1.24,1.27,1.293,1.3,1.298,1.292,1.283,1.272,1.257,1.24,1.222,1.203,1.18,1.16,1.14,1.12,1.1,1.078,1.06,1.043,1.028,1.017,1.008,1.002,1 17 | PARAM_MOUTH_OPEN_Y=0,0.01,0.04,0.08,0.13,0.19,0.25,0.31,0.37,0.42,0.46,0.49,0.5,0.494,0.48,0.46,0.44,0.41,0.39,0.368,0.353,0.343,0.34,0.342,0.347,0.356,0.366,0.378,0.391,0.404,0.418,0.432,0.445,0.458,0.47,0.48,0.488,0.494,0.499,0.5,0.5,0.5,0.499,0.498,0.496,0.494,0.492,0.489,0.485,0.481,0.476,0.47,0.463,0.455,0.447,0.438,0.427,0.416,0.403,0.389,0.374,0.358,0.34,0.32,0.3,0.279,0.26,0.24,0.21,0.19,0.17,0.15,0.13,0.11,0.092,0.074,0.058,0.044,0.031,0.021,0.012,0.005,0.001,0 18 | PARAM_TONGUE=0,0.02,0.07,0.16,0.26,0.38,0.5,0.62,0.74,0.84,0.93,0.98,1,0.981,0.93,0.86,0.78,0.7,0.62,0.55,0.5,0.47,0.46,0.467,0.485,0.51,0.55,0.59,0.63,0.68,0.72,0.77,0.82,0.86,0.9,0.93,0.96,0.98,0.995,1,0.999,0.995,0.989,0.98,0.97,0.957,0.942,0.925,0.906,0.886,0.86,0.84,0.81,0.79,0.76,0.72,0.69,0.66,0.62,0.58,0.54,0.5,0.46,0.42,0.37,0.33,0.3,0.26,0.23,0.2,0.17,0.15,0.12,0.1,0.081,0.064,0.049,0.036,0.025,0.016,0.009,0.004,0.001,0 19 | PARAM_EAR_R=0,-0.03,-0.11,-0.22,-0.35,-0.48,-0.61,-0.74,-0.84,-0.93,-0.98,-1,-0.997,-0.989,-0.976,-0.959,-0.94,-0.91,-0.88,-0.85,-0.82,-0.78,-0.74,-0.7,-0.66,-0.62,-0.58,-0.53,-0.49,-0.45,-0.41,-0.37,-0.33,-0.3,-0.27,-0.24,-0.21,-0.19,-0.174,-0.161,-0.153,-0.15,-0.158,-0.18,-0.21,-0.26,-0.31,-0.37,-0.43,-0.5,-0.57,-0.63,-0.7,-0.76,-0.82,-0.87,-0.92,-0.95,-0.98,-0.994,-1,-0.994,-0.975,-0.95,-0.91,-0.86,-0.81,-0.76,-0.7,-0.64,-0.57,-0.51,-0.44,-0.38,-0.32,-0.26,-0.21,-0.16,-0.11,-0.07,-0.04,-0.02,-0.005,0 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=0,-0.03,-0.11,-0.22,-0.35,-0.48,-0.61,-0.74,-0.84,-0.93,-0.98,-1,-0.997,-0.989,-0.975,-0.957,-0.93,-0.91,-0.88,-0.85,-0.81,-0.77,-0.73,-0.69,-0.65,-0.6,-0.56,-0.52,-0.47,-0.43,-0.39,-0.35,-0.31,-0.27,-0.24,-0.21,-0.19,-0.16,-0.145,-0.131,-0.123,-0.12,-0.128,-0.15,-0.18,-0.23,-0.28,-0.35,-0.41,-0.48,-0.55,-0.62,-0.69,-0.75,-0.81,-0.87,-0.91,-0.95,-0.98,-0.994,-1,-0.994,-0.975,-0.95,-0.91,-0.86,-0.81,-0.76,-0.7,-0.64,-0.57,-0.51,-0.44,-0.38,-0.32,-0.26,-0.21,-0.16,-0.11,-0.07,-0.04,-0.02,-0.005,0 22 | PARAM_BODY_ANGLE_X=0,-0.08,-0.29,-0.63,-1.04,-1.5,-2,-2.5,-2.96,-3.38,-3.71,-3.92,-4,-3.93,-3.75,-3.49,-3.19,-2.88,-2.59,-2.35,-2.16,-2.04,-2,-2.03,-2.1,-2.21,-2.35,-2.52,-2.71,-2.9,-3.1,-3.29,-3.48,-3.65,-3.79,-3.9,-3.97,-4,-3.97,-3.87,-3.72,-3.53,-3.28,-3.01,-2.71,-2.38,-2.03,-1.68,-1.32,-0.97,-0.62,-0.29,0.01,0.28,0.53,0.72,0.87,0.97,1,0.995,0.98,0.96,0.93,0.89,0.84,0.8,0.74,0.69,0.63,0.57,0.51,0.45,0.39,0.33,0.27,0.22,0.18,0.13,0.09,0.06,0.04,0.016,0.004,0 23 | PARAM_BODY_ANGLE_Y=0,-0.12,-0.44,-0.94,-1.56,-2.25,-3,-3.75,-4.44,-5.06,-5.56,-5.88,-6,-5.93,-5.75,-5.49,-5.19,-4.88,-4.59,-4.35,-4.16,-4.04,-4,-4.03,-4.1,-4.21,-4.35,-4.52,-4.71,-4.9,-5.1,-5.29,-5.48,-5.65,-5.79,-5.9,-5.97,-6,-5.89,-5.59,-5.12,-4.48,-3.71,-2.82,-1.86,-0.81,0.3,1.44,2.56,3.7,4.81,5.86,6.82,7.71,8.48,9.12,9.59,9.89,10,9.95,9.8,9.57,9.26,8.88,8.45,7.95,7.42,6.86,6.28,5.69,5.07,4.47,3.88,3.3,2.75,2.23,1.75,1.32,0.94,0.61,0.35,0.16,0.04,0 24 | PARAM_BIG_FACE=0,0.016,0.06,0.12,0.2,0.29,0.38,0.48,0.56,0.64,0.7,0.75,0.78,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.79,0.789,0.787,0.784,0.781,0.776,0.771,0.765,0.757,0.748,0.738,0.727,0.714,0.7,0.685,0.668,0.649,0.63,0.61,0.58,0.56,0.53,0.5,0.47,0.43,0.4,0.36,0.33,0.3,0.27,0.24,0.21,0.19,0.16,0.14,0.12,0.09,0.076,0.059,0.044,0.031,0.02,0.011,0.005,0.001,0 25 | PARAM_BODY=1 26 | PARAM_BREATH=0,0.02,0.07,0.16,0.26,0.38,0.5,0.62,0.74,0.84,0.93,0.98,1,0.993,0.974,0.94,0.91,0.86,0.8,0.74,0.68,0.61,0.54,0.46,0.39,0.32,0.26,0.2,0.14,0.09,0.06,0.03,0.007,0,0.007,0.026,0.06,0.09,0.14,0.2,0.26,0.32,0.39,0.46,0.54,0.61,0.68,0.74,0.8,0.86,0.91,0.94,0.97,0.993,1,0.996,0.985,0.966,0.94,0.91,0.88,0.84,0.8,0.75,0.71,0.66,0.61,0.56,0.51,0.46,0.4,0.36,0.31,0.26,0.22,0.18,0.14,0.1,0.07,0.05,0.028,0.013,0.003,0 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0,0.002,0.007,0.014,0.023,0.034,0.045,0.056,0.067,0.076,0.083,0.088,0.09,0.089,0.087,0.083,0.079,0.073,0.067,0.06,0.053,0.046,0.039,0.032,0.025,0.019,0.014,0.009,0.005,0.002,0.001,0,0.001,0.004,0.008,0.014,0.021,0.03,0.039,0.049,0.06,0.072,0.083,0.095,0.107,0.118,0.13,0.141,0.151,0.16,0.169,0.176,0.182,0.186,0.189,0.19,0.189,0.187,0.183,0.179,0.173,0.166,0.158,0.15,0.141,0.132,0.122,0.112,0.101,0.091,0.081,0.071,0.061,0.052,0.043,0.035,0.027,0.021,0.015,0.009,0.005,0.002,0.001,0 30 | PARAM_TAIL_ANGRY=0 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_HAND_R=0 34 | PARAM_HAND_L=0 35 | PARAM_ARM_L=0,-0.009,-0.03,-0.07,-0.11,-0.17,-0.22,-0.27,-0.32,-0.36,-0.4,-0.43,-0.444,-0.45,-0.446,-0.438,-0.427,-0.416,-0.406,-0.398,-0.392,-0.39,-0.392,-0.398,-0.407,-0.418,-0.432,-0.448,-0.465,-0.483,-0.503,-0.522,-0.543,-0.562,-0.582,-0.601,-0.619,-0.636,-0.651,-0.665,-0.677,-0.687,-0.694,-0.698,-0.7,-0.686,-0.65,-0.59,-0.52,-0.44,-0.35,-0.26,-0.18,-0.11,-0.05,-0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 36 | PARAM_HAND_L_MOVE=0 37 | VISIBLE:PARTS_01_ARM_R=0 38 | VISIBLE:PARTS_01_ARM_L=0 39 | VISIBLE:PARTS_01_ARM_R_02=1 40 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/tororo/mtn/07.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,-0.011,-0.04,-0.1,-0.19,-0.31,-0.46,-0.65,-0.87,-1.13,-1.43,-1.76,-2.13,-2.55,-2.99,-3.48,-4,-4.73,-5.44,-6.1,-6.71,-7.27,-7.76,-8.19,-8.53,-8.78,-8.94,-9,-8.82,-8.37,-7.73,-6.95,-6.09,-5.19,-4.26,-3.37,-2.5,-1.71,-1,-0.33,0.23,0.74,1.2,1.61,2.02,2.42,2.83,3.28,3.78,4.34,5,5.83,6.86,8.01,9.21,10.35,11.39,12.23,12.79,13,12.96,12.84,12.65,12.39,12.07,11.69,11.26,10.79,10.28,9.74,9.18,8.6,8,7.31,6.67,6.05,5.46,4.92,4.39,3.9,3.44,3.01,2.61,2.25,1.9,1.59,1.31,1.06,0.83,0.64,0.46,0.32,0.2,0.11,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 9 | PARAM_ANGLE_Y=0,-0.18,-0.68,-1.45,-2.44,-3.59,-4.86,-6.16,-7.49,-8.79,-10.03,-11.13,-12.11,-12.91,-13.5,-13.87,-14,-13.95,-13.77,-13.43,-12.88,-12.1,-11.07,-9.73,-8.11,-6.12,-3.79,-1,3.06,7.18,11.16,15.01,18.54,21.72,24.54,26.79,28.53,29.61,30,30,30,30,30,30,30,30,30,30,30,30,30,29.9,29.58,29,28.13,26.94,25.36,23.37,20.93,18,14.61,11.46,8.51,5.76,3.3,1.09,-0.82,-2.42,-3.72,-4.73,-5.44,-5.86,-6,-5.97,-5.88,-5.74,-5.55,-5.33,-5.06,-4.76,-4.45,-4.1,-3.74,-3.38,-3,-2.62,-2.26,-1.9,-1.55,-1.24,-0.94,-0.67,-0.45,-0.26,-0.12,-0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 10 | PARAM_ANGLE_Z=0,-0.002,-0.009,-0.02,-0.034,-0.051,-0.07,-0.1,-0.12,-0.15,-0.18,-0.21,-0.25,-0.28,-0.32,-0.36,-0.4,-0.44,-0.48,-0.51,-0.55,-0.59,-0.63,-0.67,-0.7,-0.74,-0.77,-0.81,-0.84,-0.86,-0.89,-0.91,-0.94,-0.955,-0.971,-0.983,-0.992,-0.998,-1,-0.86,-0.49,0.09,0.82,1.63,2.5,3.37,4.18,4.91,5.49,5.86,6,5.991,5.97,5.92,5.87,5.79,5.71,5.61,5.5,5.38,5.24,5.1,4.95,4.79,4.62,4.45,4.27,4.09,3.9,3.71,3.52,3.32,3.12,2.93,2.73,2.54,2.34,2.15,1.96,1.78,1.61,1.44,1.27,1.11,0.96,0.82,0.69,0.56,0.45,0.35,0.26,0.18,0.12,0.07,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 11 | PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.93,0.79,0.62,0.43,0.27,0.13,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.07,0.14,0.23,0.33,0.43,0.54,0.64,0.74,0.82,0.89,0.95,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 12 | PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.93,0.79,0.62,0.43,0.27,0.13,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.07,0.14,0.23,0.33,0.43,0.54,0.64,0.74,0.82,0.89,0.95,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 13 | PARAM_EYE_BALL_X=0,0.007,0.028,0.06,0.1,0.15,0.2,0.26,0.31,0.38,0.44,0.5,0.56,0.61,0.66,0.71,0.75,0.78,0.81,0.824,0.83,0.823,0.8,0.77,0.72,0.67,0.62,0.55,0.48,0.42,0.35,0.28,0.21,0.16,0.11,0.06,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 14 | PARAM_EYE_BALL_Y=0,0.009,0.03,0.07,0.12,0.18,0.24,0.31,0.38,0.45,0.53,0.6,0.67,0.74,0.8,0.86,0.91,0.94,0.97,0.993,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.998,0.993,0.985,0.975,0.961,0.946,0.927,0.907,0.88,0.86,0.84,0.81,0.78,0.75,0.72,0.69,0.66,0.62,0.59,0.55,0.52,0.49,0.45,0.42,0.39,0.35,0.32,0.29,0.26,0.23,0.2,0.18,0.15,0.13,0.1,0.08,0.065,0.049,0.034,0.022,0.013,0.006,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 15 | PARAM_EYE_FORM=0 16 | PARAM_MOUTH_FORM=0 17 | PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.03,0.07,0.13,0.19,0.26,0.34,0.42,0.5,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.93,0.85,0.75,0.63,0.51,0.4,0.29,0.19,0.11,0.05,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 18 | PARAM_TONGUE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.019,0.04,0.07,0.11,0.15,0.19,0.24,0.29,0.35,0.4,0.45,0.5,0.55,0.59,0.63,0.66,0.69,0.71,0.731,0.746,0.759,0.769,0.777,0.782,0.786,0.789,0.79,0.791,0.791,0.791,0.791,0.79,0.79,0.79,0.79,0.79,0.789,0.789,0.788,0.787,0.786,0.785,0.784,0.782,0.78,0.777,0.774,0.771,0.768,0.764,0.759,0.755,0.749,0.744,0.738,0.731,0.724,0.716,0.708,0.699,0.69,0.67,0.62,0.57,0.49,0.42,0.34,0.26,0.19,0.13,0.07,0.03,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 19 | PARAM_EAR_R=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.64,0.07,-0.46,-0.85,-1,-0.64,-0.07,0.46,0.85,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=1 22 | PARAM_BODY_ANGLE_X=0,-0.06,-0.24,-0.52,-0.87,-1.28,-1.73,-2.2,-2.68,-3.14,-3.58,-3.98,-4.33,-4.61,-4.82,-4.96,-5,-4.995,-4.979,-4.95,-4.9,-4.84,-4.76,-4.66,-4.53,-4.38,-4.21,-4,-3.67,-3.29,-2.88,-2.45,-2.03,-1.62,-1.22,-0.86,-0.52,-0.24,0,0.22,0.41,0.59,0.75,0.91,1.06,1.2,1.35,1.5,1.66,1.82,2,2.18,2.35,2.51,2.65,2.77,2.86,2.94,2.98,3,2.97,2.89,2.77,2.62,2.44,2.25,2.04,1.84,1.64,1.45,1.28,1.13,1,0.86,0.73,0.62,0.52,0.43,0.36,0.29,0.24,0.19,0.15,0.11,0.08,0.06,0.04,0.026,0.015,0.008,0.003,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 23 | PARAM_BODY_ANGLE_Y=0,-0.1,-0.39,-0.83,-1.39,-2.05,-2.78,-3.52,-4.28,-5.02,-5.73,-6.36,-6.92,-7.38,-7.72,-7.93,-8,-7.983,-7.93,-7.83,-7.69,-7.49,-7.24,-6.93,-6.56,-6.11,-5.6,-5,-4.14,-3.26,-2.37,-1.44,-0.49,0.49,1.52,2.56,3.67,4.8,6,7.36,8.72,10.12,11.48,12.77,13.99,15.11,16.06,16.87,17.48,17.86,18,17.81,17.28,16.43,15.31,13.98,12.43,10.73,8.9,7,5.02,3.3,1.79,0.49,-0.61,-1.53,-2.27,-2.86,-3.3,-3.63,-3.84,-3.96,-4,-3.97,-3.87,-3.72,-3.53,-3.3,-3.04,-2.77,-2.48,-2.19,-1.89,-1.6,-1.32,-1.05,-0.8,-0.57,-0.38,-0.22,-0.1,-0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 24 | PARAM_BIG_FACE=0 25 | PARAM_BODY=1 26 | PARAM_BREATH=0,0.006,0.025,0.05,0.09,0.14,0.19,0.24,0.3,0.36,0.43,0.49,0.56,0.62,0.68,0.74,0.79,0.84,0.89,0.93,0.96,0.98,0.995,1,0.993,0.975,0.94,0.91,0.86,0.8,0.74,0.68,0.61,0.54,0.47,0.41,0.34,0.28,0.22,0.17,0.12,0.08,0.04,0.02,0.005,0,0.004,0.016,0.034,0.06,0.09,0.13,0.17,0.21,0.26,0.31,0.36,0.42,0.47,0.53,0.58,0.64,0.69,0.74,0.79,0.83,0.87,0.91,0.94,0.97,0.984,0.996,1,0.995,0.98,0.96,0.93,0.89,0.84,0.79,0.74,0.68,0.62,0.56,0.5,0.44,0.38,0.32,0.26,0.21,0.16,0.11,0.07,0.04,0.02,0.005,0,0.004,0.016,0.034,0.06,0.09,0.13,0.17,0.21,0.26,0.31,0.36,0.42,0.47,0.53,0.58,0.64,0.69,0.74,0.79,0.83,0.87,0.91,0.94,0.97,0.984 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0 30 | PARAM_TAIL_ANGRY=0 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_HAND_R=0 34 | PARAM_HAND_L=0 35 | PARAM_ARM_L=0 36 | VISIBLE:PARTS_01_ARM_R=0 37 | VISIBLE:PARTS_01_ARM_L=0 38 | VISIBLE:PARTS_01_ARM_R_02=1 39 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/tororo/mtn/08.mtn: -------------------------------------------------------------------------------- 1 | # Live2D Animator Motion Data 2 | $fps=30 3 | 4 | $fadein=1000 5 | 6 | $fadeout=1000 7 | 8 | PARAM_ANGLE_X=0,0.16,0.63,1.35,2.28,3.38,4.58,5.85,7.15,8.42,9.62,10.72,11.65,12.37,12.84,13,13.001,12.999,12.992,12.973,12.94,12.88,12.81,12.7,12.55,12.37,12.15,11.88,11.55,11.18,10.74,10.23,9.65,9,8.06,6.66,4.86,2.78,0.44,-2.01,-4.53,-7.05,-9.48,-11.75,-13.81,-15.52,-16.86,-17.7,-18,-17.97,-17.87,-17.69,-17.45,-17.13,-16.74,-16.28,-15.75,-15.14,-14.46,-13.71,-12.89,-12,-11.07,-10.05,-9,-7.7,-6.5,-5.38,-4.34,-3.42,-2.6,-1.89,-1.3,-0.83,-0.46,-0.2,-0.05,0 9 | PARAM_ANGLE_Y=0,0.18,0.7,1.53,2.61,3.94,5.43,7.07,8.82,10.64,12.5,14.38,16.19,17.94,19.55,21,22.3,23.47,24.52,25.45,26.26,26.97,27.6,28.13,28.58,28.95,29.25,29.49,29.67,29.81,29.9,29.96,29.99,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.74,29,27.84,26.33,24.55,22.55,20.45,18.25,16.03,13.83,11.75,9.77,7.96,6.4,5.05,4,2.97,2.15,1.5,0.99,0.61,0.35,0.17,0.06,0.01,-0.014,-0.013,-0.005,0 10 | PARAM_ANGLE_Z=0,-0.13,-0.5,-1.09,-1.85,-2.76,-3.76,-4.84,-5.95,-7.07,-8.16,-9.2,-10.13,-10.94,-11.57,-12,-12.31,-12.61,-12.89,-13.16,-13.41,-13.65,-13.87,-14.07,-14.27,-14.45,-14.62,-14.77,-14.92,-15.05,-15.17,-15.28,-15.38,-15.47,-15.56,-15.63,-15.69,-15.75,-15.8,-15.85,-15.88,-15.91,-15.94,-15.96,-15.976,-15.987,-15.995,-15.999,-16,-15.94,-15.76,-15.46,-15.08,-14.61,-14.06,-13.45,-12.78,-12.07,-11.32,-10.54,-9.75,-8.92,-8.11,-7.29,-6.47,-5.69,-4.91,-4.17,-3.47,-2.82,-2.22,-1.67,-1.19,-0.78,-0.45,-0.2,-0.05,0 11 | PARAM_EYE_L_OPEN=1 12 | PARAM_EYE_R_OPEN=1 13 | PARAM_EYE_BALL_X=0,0.013,0.05,0.1,0.16,0.24,0.32,0.4,0.49,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,0.995,0.979,0.95,0.92,0.88,0.83,0.77,0.71,0.65,0.58,0.51,0.43,0.36,0.29,0.21,0.14,0.06,-0.02,-0.09,-0.16,-0.23,-0.29,-0.35,-0.4,-0.46,-0.51,-0.55,-0.6,-0.64,-0.68,-0.71,-0.74,-0.77,-0.8,-0.83,-0.85,-0.869,-0.887,-0.902,-0.915,-0.926,-0.935,-0.942,-0.946,-0.949,-0.95,-0.932,-0.88,-0.82,-0.73,-0.64,-0.54,-0.44,-0.34,-0.25,-0.17,-0.1,-0.05,-0.01,0 14 | PARAM_EYE_BALL_Y=0,0.013,0.05,0.1,0.16,0.24,0.32,0.4,0.49,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.981,0.93,0.86,0.77,0.67,0.57,0.46,0.36,0.26,0.18,0.11,0.05,0.01,0 15 | PARAM_EYE_FORM=0,-0.006,-0.023,-0.05,-0.08,-0.12,-0.16,-0.2,-0.24,-0.29,-0.33,-0.37,-0.4,-0.44,-0.46,-0.483,-0.496,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.49,-0.47,-0.43,-0.38,-0.33,-0.28,-0.23,-0.18,-0.13,-0.09,-0.05,-0.02,-0.006,0 16 | PARAM_MOUTH_FORM=0,0.003,0.011,0.025,0.043,0.07,0.09,0.12,0.16,0.19,0.23,0.28,0.32,0.36,0.41,0.46,0.51,0.55,0.6,0.65,0.7,0.74,0.78,0.83,0.87,0.9,0.94,0.97,0.99,1.02,1.035,1.049,1.057,1.06,0.8,0.38,0.09,0,0.011,0.05,0.14,0.26,0.45,0.73,1.01,1.29,1.52,1.67,1.73,1.723,1.704,1.67,1.63,1.58,1.52,1.45,1.38,1.3,1.22,1.14,1.05,0.96,0.88,0.79,0.7,0.61,0.53,0.45,0.38,0.31,0.24,0.18,0.13,0.08,0.05,0.02,0.006,0 17 | PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.22,0.31,0.34,0.341,0.34,0.337,0.331,0.32,0.28,0.22,0.15,0.08,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 18 | PARAM_TONGUE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0.3,0.44,0.51,0.56,0.573,0.579,0.58,0.58,0.54,0.43,0.29,0.15,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 19 | PARAM_EAR_R=1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.47,-0.47,-1,-0.64,-0.07,0.46,0.85,1,0.47,-0.47,-1,-0.47,0.47,1,1,1,1 20 | PARAM_EAR_R_MOVE=0 21 | PARAM_EAR_L=1 22 | PARAM_BODY_ANGLE_X=0,-0.005,-0.02,-0.04,-0.08,-0.12,-0.17,-0.23,-0.3,-0.37,-0.45,-0.53,-0.63,-0.72,-0.82,-0.93,-1.04,-1.15,-1.27,-1.38,-1.5,-1.63,-1.75,-1.87,-2,-2.13,-2.25,-2.37,-2.5,-2.62,-2.73,-2.85,-2.96,-3.07,-3.18,-3.28,-3.38,-3.47,-3.55,-3.63,-3.7,-3.77,-3.83,-3.88,-3.92,-3.96,-3.98,-3.995,-4,-3.984,-3.94,-3.87,-3.77,-3.65,-3.52,-3.36,-3.2,-3.02,-2.83,-2.63,-2.44,-2.23,-2.03,-1.82,-1.62,-1.42,-1.23,-1.04,-0.87,-0.71,-0.55,-0.42,-0.3,-0.19,-0.11,-0.05,-0.01,0 23 | PARAM_BODY_ANGLE_Y=0,0.26,0.95,1.99,3.31,4.82,6.47,8.23,10.03,11.85,13.67,15.39,17.06,18.62,20,21.41,22.68,23.8,24.82,25.71,26.49,27.18,27.76,28.26,28.68,29.02,29.3,29.52,29.69,29.82,29.91,29.96,29.99,30,29.94,29.78,29.51,29.13,28.65,28.08,27.42,26.66,25.81,24.88,23.85,22.76,21.57,20.32,19,17.57,16.23,14.93,13.71,12.55,11.45,10.4,9.42,8.49,7.62,6.81,6.05,5.32,4.66,4.04,3.46,2.94,2.45,2.02,1.63,1.29,0.98,0.72,0.5,0.32,0.18,0.08,0.02,0 24 | PARAM_BIG_FACE=0 25 | PARAM_BODY=1 26 | PARAM_BREATH=0,0.019,0.07,0.14,0.23,0.33,0.43,0.54,0.64,0.74,0.82,0.89,0.95,0.99,1,0.987,0.95,0.9,0.82,0.74,0.65,0.55,0.45,0.35,0.26,0.18,0.1,0.05,0.01,0,0.013,0.05,0.1,0.16,0.24,0.32,0.4,0.49,0.58,0.66,0.74,0.81,0.87,0.93,0.97,0.99,1,0.987,0.95,0.9,0.83,0.74,0.65,0.56,0.46,0.37,0.28,0.2,0.13,0.08,0.04,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 27 | PARAM_BLOW_R=0 28 | PARAM_BLOW_L=0 29 | PARAM_TAIL=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.019,0.039,0.06,0.09,0.12,0.14,0.17,0.2,0.22,0.24,0.251,0.252,0.25,0.241,0.22,0.19,0.15,0.11,0.07,0.04,0.02,0.005,0,0.007,0.026,0.05,0.09,0.12,0.16,0.19,0.22,0.24,0.25,0.252,0.251,0.25,0.241,0.22,0.19,0.15,0.11,0.07,0.04,0.02,0.005,0,0,0,0,0,0,0 30 | PARAM_TAIL_ANGRY=0 31 | PARAM_MUSTACHE_FRONT_R=0 32 | PARAM_MUSTACHE_FRONT_L=0 33 | PARAM_ARM_L=0 34 | PARAM_HAND_L_MOVE=0 35 | PARAM_ARM_R_MOVE=0 36 | ARM_R_MOVE_02=0 37 | VISIBLE:PARTS_01_ARM_R=0 38 | VISIBLE:PARTS_01_ARM_L=0 39 | VISIBLE:PARTS_01_ARM_R_02=1 40 | VISIBLE:PARTS_01_ARM_L_02=1 -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/tororo/tororo.model.json: -------------------------------------------------------------------------------- 1 | {"version":"Sample 1.0.0","model":"moc/tororo.moc","textures":["moc/tororo.2048/texture_00.png"],"pose":"tororo.pose.json","name":"tororo","motions":{"idle":[{"file":"mtn/00_idle.mtn"}],"":[{"file":"mtn/01.mtn"},{"file":"mtn/02.mtn"},{"file":"mtn/03.mtn"},{"file":"mtn/04.mtn"},{"file":"mtn/05.mtn"},{"file":"mtn/06.mtn"},{"file":"mtn/07.mtn"},{"file":"mtn/08.mtn"}]}} -------------------------------------------------------------------------------- /docs/.vuepress/public/live2d/tororo/tororo.pose.json: -------------------------------------------------------------------------------- 1 | {"type":"Live2D Pose","fade_in":0,"parts_visible":[{"group":[{"id":"PARTS_01_ARM_R"},{"id":"PARTS_01_ARM_R_02"}]},{"group":[{"id":"PARTS_01_ARM_L"},{"id":"PARTS_01_ARM_L_02"}]}]} -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: index 3 | --- 4 | # vuepress-theme-ting 5 | [github项目](https://github.com/Chenyating/vuepress-theme-ting) 6 | > 这是一个vuepress主题,主要功能有博客归档分类,以及留言,个人展示等;主题追求极简,根据 vuepress 的默认主题修改而成,官方的主题配置仍然适用; 7 | 这是一个看板娘小清新vuepress主题,主要功能有博客归档分类,以及留言,个人展示等;主题追求极简,根据 vuepress 的默认主题修改而成,官方的主题配置仍然适用; 8 | 9 | ## 预览地址 10 | [预览地址](https://www.yating.online/) 11 | 12 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512101419420.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 13 | 14 | ## 版本 15 | ### 第一版1.4.5 16 | 看板娘需在配置目录下设置路径。 17 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225330395.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 18 | 19 | - 如果你喜欢最初风格的版本:为1.4.5 20 | ``` 21 | npm i vuepress-theme-ting@1.4.5 22 | ``` 23 | 24 | ### 第二版2.x.x 25 | - 支持默认换装看板娘 26 | - 图灵对话机器人 27 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512101419420.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 28 | 29 | ``` 30 | npm i vuepress-theme-ting 31 | ``` 32 | UI风格我个人感觉还有待改进,我个人不是很喜欢哈哈哈~ 33 | 34 | 最近在致力于编写一个小清新风格的ui组件库要运用到本主题中,所以进度会比较慢。 35 | 36 | 37 | ## 新增功能 38 | 39 | ### 默认换装看板娘2.x.x 40 | 自动换装88套衣服,琳琅满目~,截图不过来了。 41 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094327396.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094251815.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094223485.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094104514.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512101028930.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 42 | 43 | ### 自定义看板娘 44 | - 本主题支持看板娘,由于live2d读取模型文件,你可以选择自己喜欢的看板娘,在配置时填写路径就可以了。 45 | 如果你不喜欢默认的看板娘模型,可以在config.js里增加看板娘路径。 46 | ``` 47 | module.exports = { 48 | …… 49 | head: [ 50 | …… 51 | ], 52 | themeConfig: { 53 | …… 54 | live2dModel: '/live2d/model/poi/poi.model.json', //live2d模型路径 55 | …… 56 | } 57 | } 58 | ``` 59 | - 其他待补充 60 | 61 | ### 图灵对话机器人2.x.x 62 | 可以与机器人聊天,并且播放语音; 63 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/2020051210373373.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 64 | #### 鸣谢 65 | |支持者|支持内容| 66 | |-|-| 67 | |[mumudadi](https://github.com/mumudadi)|提供图灵机器人后台技术支持。| 68 | 69 | 70 | ## 导语 71 | > 你是否喜欢这个vuepress主题呢?`按照步骤来`,你也可以使用这样的主题哦。以下是具体的配置使用过程。 72 | 73 | --- 74 | 75 | ## 前期工作 76 | > 新建项目project,在project下新建一个docs文件夹和一个package.json文件 77 | 78 | - 文件目录 79 | ``` 80 | project 81 | │ 82 | ├─── docs 83 | │ 84 | └─── package.json 85 | ``` 86 | 87 | - package.json内容 88 | ```json 89 | { 90 | "name": "demo", 91 | "version": "1.0.0", 92 | "description": "", 93 | "main": "index.js", 94 | "directories": { 95 | "doc": "docs" 96 | }, 97 | "scripts": { 98 | "dev": "vuepress dev docs", 99 | "build": "vuepress build docs" 100 | }, 101 | "keywords": [], 102 | "author": "", 103 | "license": "ISC" 104 | } 105 | ``` 106 | 107 | --- 108 | 109 | ## 下载主题 110 | 111 | ```cmd 112 | npm i vuepress-theme-ting 113 | npm i 114 | ``` 115 | 116 | - 目录结构 117 | ``` 118 | project 119 | │ 120 | ├─ docs 121 | │ 122 | ├─ package.json 123 | │ 124 | └─ node_modules 125 | ``` 126 | 127 | --- 128 | 129 | ## 配置 130 | > 在docs目录下新建README.md、catalog.md、.vuepress文件夹;在.vuepress文件下新建config.js文件; 131 | 132 | ``` 133 | project 134 | │ 135 | ├─ docs 136 | │ │ 137 | │ ├─ README.md 138 | │ │ 139 | │ ├─ catalog.md 140 | │ │ 141 | │ └─.vuepress 142 | │ │ 143 | │ └─config.js 144 | │ 145 | ├─ package.json 146 | │ 147 | └─ node_modules 148 | ``` 149 | 150 | - config.js内容 151 | ```js 152 | module.exports = { 153 | title: 'YATING',//网站名称 154 | description: '用心写代码,不辜负程序员之名',//网站描述 155 | themeConfig: { 156 | nav: [//导航栏 157 | { text: '主页', link: '/' }, 158 | { text: '目录',link:'/catalog'} 159 | ], 160 | catalogUrl:'/catalog',//必填 目录路径 161 | lastUpdated: 'Last Updated',//必填:文章显示最新修改时间 162 | }, 163 | theme:'ting'//必填:使用vuepress-theme-ting 主题 164 | } 165 | ``` 166 | 167 | - README.md 168 | ```yaml 169 | --- 170 | layout: index 171 | title: Home 172 | showMessage: false 173 | --- 174 | 175 | # vuepress-theme-ting 176 | 177 | > 如果你喜欢这个主题可以给我一个start,谢谢 178 | 179 | ## 欢迎使用 180 | ``` 181 | 182 | - catalog.md 183 | ```yaml 184 | --- 185 | layout: catalog 186 | --- 187 | layout:表示当前使用catalog页面; 188 | title:md文件标题,注意:命名为Home本主题均自动忽略; 189 | 190 | ``` 191 | 192 | ## 指令操作 193 | 194 | - 本地预览 195 | ``` 196 | npm run dev 197 | ``` 198 | 199 | 最终效果图如下: 200 | 201 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200112231356298.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200112231426474.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 202 | 203 | - 打包 204 | ``` 205 | npm run build 206 | ``` 207 | 208 | 209 | ## 预览地址 210 | [预览地址](https://www.yating.online/) 211 | 212 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225330395.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 213 | 214 | ## 文档设置 215 | 216 | md文档抬头以下列格式为例: 217 | ```yaml 218 | --- 219 | layout: index 220 | title: Home 221 | showMessage: false 222 | --- 223 | ``` 224 | 225 | layout:默认值为空,为文章内容页 226 | ```yaml 227 | catalog:表示当前页为目录页面; 228 | index:表示为主页; 229 | layout:默认文章内容(无需设置) 230 | ``` 231 | 232 | 当前文章属性 233 | ```yaml 234 | --- 235 | img:url 236 | title:文章标题 237 | showMessage:是否显示留言栏,侧边栏;默认为true 238 | --- 239 | ``` 240 | 241 | 注意:文章的图片若保存在`.vuepress/public/img/hello.jpg`路径下,对应图片将在目录中展示; 242 | 则相应的,请将img的值设置为:`/img/hello.jpg` 243 | 244 | 对应图片效果为: 245 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001346640.png) 246 | 247 | 248 | ## 注意 249 | 例如以下目录结构: 250 | ``` 251 | project 252 | │ 253 | ├─ docs 254 | │ │ 255 | │ ├─ README.md 256 | │ │ 257 | │ ├─ catalog.md 258 | │ │ 259 | │ └─.vuepress 260 | │ │ │ 261 | │ │ └─config.js 262 | │ └─ 你的文档 263 | │ 264 | ├─ package.json 265 | │ 266 | └─ node_modules 267 | ``` 268 | 269 | ## 效果图 270 | ### 主页 271 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225330395.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 272 | 273 | ### 目录 274 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225600826.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 275 | 276 | ### 内容 277 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225521690.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 278 | 279 | ### 其他 280 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225644433.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 281 | 282 | ### 手机端预览效果 283 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001515195.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/2019121700154317.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001553253.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001614921.png) 284 | 285 | ## 全部配置 286 | ```js 287 | // .vuepress/config.js 288 | module.exports = { 289 | title: 'YATING',//网站名称 290 | description: '用心写代码,不辜负程序员之名',//网站描述 291 | //head标签 292 | head: [ 293 | ['link', { rel: 'stylesheet', href: '/img/logo.ico' }],//注意"/"就是public资源目录。标签的logo 294 | ['script', { src: 'https://cdn.bootcss.com/jquery/3.4.1/jquery.js' }] 295 | ], 296 | themeConfig: { 297 | author:'tinger', 298 | headImg:'https://yating.online/res/img/yating.jpg',//选填:头像 299 | //导航栏 300 | nav: [ 301 | { text: '主页', link: '/' }, 302 | { text: '目录',link:'/config/catalog'}, 303 | { text: '项目列表', link: '/config/about' }, 304 | { text: 'Github',type:'url', link: 'https://github.com/Chenyating' }, 305 | ], 306 | catalogUrl:'/catalog',//必填 目录路径 307 | lastUpdated: 'Last Updated',//必填:文章显示最新修改时间 308 | smoothScroll: true,//选填 309 | //选填/live2d模型路径 310 | live2dModel:'/live2d/model/poi/poi.model.json', 311 | pageNum:5,//选填:目录每页显示条数 312 | gitalk:{//选填:gitalk留言设置 313 | clientID: '5b8613cfe15e02db85b7', 314 | clientSecret: 'd4129094c33b8da73e873470fb89aea53dfaf396', 315 | repo: 'Chenyating.github.io', 316 | owner: 'chenyating', 317 | admin: ['Chenyating'], 318 | distractionFreeMode: false // Facebook-like distraction free mode 319 | }, 320 | footer:'粤ICP备案号:18150247号'//选填 321 | }, 322 | theme:'ting'//必填:使用vuepress-theme-ting 主题 323 | } 324 | ``` 325 | 326 | ## 感谢阅读 327 | 如果你喜欢这个主题,请给我一个start,给予我一个鼓励吧~蟹蟹~ 328 | [github项目](https://github.com/Chenyating/vuepress-theme-ting) 329 | 330 | 331 | ## 其他 332 | 如果你在使用过程中遇到什么问题,可以与我联系,记得给我个start哟~ -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Chenyating.github.io", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "repository": "git@github.com:Chenyating/Chenyating.github.io.git", 6 | "author": "Cyating <924471303@qq.com>", 7 | "license": "MIT", 8 | "scripts": { 9 | "dev": "vuepress dev docs", 10 | "build": "vuepress build docs", 11 | "deploy": "bash deploy.sh" 12 | }, 13 | "dependencies": { 14 | "consolecolors": "^0.33.2-b", 15 | "gitalk": "^1.7.2", 16 | "ifresh-ui": "^0.2.2", 17 | "vue-highlightjs": "^1.3.3", 18 | "vuepress": "^1.2.0", 19 | "vuepress-theme-ting": "^2.0.2" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /ting/.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | node_modules 3 | 4 | # Nuxt generate 5 | dist 6 | Blogs 7 | 8 | -------------------------------------------------------------------------------- /ting/README.md: -------------------------------------------------------------------------------- 1 | # vuepress-theme-ting 2 | [github项目](https://github.com/Chenyating/vuepress-theme-ting) 3 | > 这是一个vuepress主题,主要功能有博客归档分类,以及留言,个人展示等;主题追求极简,根据 vuepress 的默认主题修改而成,官方的主题配置仍然适用; 4 | 这是一个看板娘小清新vuepress主题,主要功能有博客归档分类,以及留言,个人展示等;主题追求极简,根据 vuepress 的默认主题修改而成,官方的主题配置仍然适用; 5 | 6 | ## 预览地址 7 | [预览地址](https://www.yating.online/) 8 | 9 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512101419420.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 10 | 11 | ## 版本 12 | ### 第一版1.4.5 13 | 看板娘需在配置目录下设置路径。 14 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225330395.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 15 | 16 | - 如果你喜欢最初风格的版本:为1.4.5 17 | ``` 18 | npm i vuepress-theme-ting@1.4.5 19 | ``` 20 | 21 | ### 第二版2.x.x 22 | - 支持默认换装看板娘 23 | - 图灵对话机器人 24 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512101419420.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 25 | 26 | ``` 27 | npm i vuepress-theme-ting 28 | ``` 29 | UI风格我个人感觉还有待改进,我个人不是很喜欢哈哈哈~ 30 | 31 | 最近在致力于编写一个小清新风格的ui组件库要运用到本主题中,所以进度会比较慢。 32 | 33 | 34 | ## 新增功能 35 | 36 | ### 默认换装看板娘2.x.x 37 | 自动换装88套衣服,琳琅满目~,截图不过来了。 38 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094327396.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094251815.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094223485.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512094104514.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200512101028930.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 39 | 40 | ### 自定义看板娘 41 | - 本主题支持看板娘,由于live2d读取模型文件,你可以选择自己喜欢的看板娘,在配置时填写路径就可以了。 42 | 如果你不喜欢默认的看板娘模型,可以在config.js里增加看板娘路径。 43 | ``` 44 | module.exports = { 45 | …… 46 | head: [ 47 | …… 48 | ], 49 | themeConfig: { 50 | …… 51 | live2dModel: '/live2d/model/poi/poi.model.json', //live2d模型路径 52 | …… 53 | } 54 | } 55 | ``` 56 | - 其他待补充 57 | 58 | ### 图灵对话机器人2.x.x 59 | 可以与机器人聊天,并且播放语音; 60 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/2020051210373373.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 61 | #### 鸣谢 62 | |支持者|支持内容| 63 | |-|-| 64 | |[mumudadi](https://github.com/mumudadi)|提供图灵机器人后台技术支持。| 65 | 66 | 67 | ## 导语 68 | > 你是否喜欢这个vuepress主题呢?`按照步骤来`,你也可以使用这样的主题哦。以下是具体的配置使用过程。 69 | 70 | --- 71 | 72 | ## 前期工作 73 | > 新建项目project,在project下新建一个docs文件夹和一个package.json文件 74 | 75 | - 文件目录 76 | ``` 77 | project 78 | │ 79 | ├─── docs 80 | │ 81 | └─── package.json 82 | ``` 83 | 84 | - package.json内容 85 | ```json 86 | { 87 | "name": "demo", 88 | "version": "1.0.0", 89 | "description": "", 90 | "main": "index.js", 91 | "directories": { 92 | "doc": "docs" 93 | }, 94 | "scripts": { 95 | "dev": "vuepress dev docs", 96 | "build": "vuepress build docs" 97 | }, 98 | "keywords": [], 99 | "author": "", 100 | "license": "ISC" 101 | } 102 | ``` 103 | 104 | --- 105 | 106 | ## 下载主题 107 | 108 | ```cmd 109 | npm i vuepress-theme-ting 110 | npm i 111 | ``` 112 | 113 | - 目录结构 114 | ``` 115 | project 116 | │ 117 | ├─ docs 118 | │ 119 | ├─ package.json 120 | │ 121 | └─ node_modules 122 | ``` 123 | 124 | --- 125 | 126 | ## 配置 127 | > 在docs目录下新建README.md、catalog.md、.vuepress文件夹;在.vuepress文件下新建config.js文件; 128 | 129 | ``` 130 | project 131 | │ 132 | ├─ docs 133 | │ │ 134 | │ ├─ README.md 135 | │ │ 136 | │ ├─ catalog.md 137 | │ │ 138 | │ └─.vuepress 139 | │ │ 140 | │ └─config.js 141 | │ 142 | ├─ package.json 143 | │ 144 | └─ node_modules 145 | ``` 146 | 147 | - config.js内容 148 | ```js 149 | module.exports = { 150 | title: 'YATING',//网站名称 151 | description: '用心写代码,不辜负程序员之名',//网站描述 152 | themeConfig: { 153 | nav: [//导航栏 154 | { text: '主页', link: '/' }, 155 | { text: '目录',link:'/catalog'} 156 | ], 157 | catalogUrl:'/catalog',//必填 目录路径 158 | lastUpdated: 'Last Updated',//必填:文章显示最新修改时间 159 | }, 160 | theme:'ting'//必填:使用vuepress-theme-ting 主题 161 | } 162 | ``` 163 | 164 | - README.md 165 | ```yaml 166 | --- 167 | layout: index 168 | title: Home 169 | showMessage: false 170 | --- 171 | 172 | # vuepress-theme-ting 173 | 174 | > 如果你喜欢这个主题可以给我一个start,谢谢 175 | 176 | ## 欢迎使用 177 | ``` 178 | 179 | - catalog.md 180 | ```yaml 181 | --- 182 | layout: catalog 183 | --- 184 | layout:表示当前使用catalog页面; 185 | title:md文件标题,注意:命名为Home本主题均自动忽略; 186 | 187 | ``` 188 | 189 | ## 指令操作 190 | 191 | - 本地预览 192 | ``` 193 | npm run dev 194 | ``` 195 | 196 | 最终效果图如下: 197 | 198 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200112231356298.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70)![在这里插入图片描述](https://img-blog.csdnimg.cn/20200112231426474.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 199 | 200 | - 打包 201 | ``` 202 | npm run build 203 | ``` 204 | 205 | 206 | ## 预览地址 207 | [预览地址](https://www.yating.online/) 208 | 209 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225330395.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 210 | 211 | ## 文档设置 212 | 213 | md文档抬头以下列格式为例: 214 | ```yaml 215 | --- 216 | layout: index 217 | title: Home 218 | showMessage: false 219 | --- 220 | ``` 221 | 222 | layout:默认值为空,为文章内容页 223 | ```yaml 224 | catalog:表示当前页为目录页面; 225 | index:表示为主页; 226 | layout:默认文章内容(无需设置) 227 | ``` 228 | 229 | 当前文章属性 230 | ```yaml 231 | --- 232 | img:url 233 | title:文章标题 234 | showMessage:是否显示留言栏,侧边栏;默认为true 235 | --- 236 | ``` 237 | 238 | 注意:文章的图片若保存在`.vuepress/public/img/hello.jpg`路径下,对应图片将在目录中展示; 239 | 则相应的,请将img的值设置为:`/img/hello.jpg` 240 | 241 | 对应图片效果为: 242 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001346640.png) 243 | 244 | 245 | ## 注意 246 | 例如以下目录结构: 247 | ``` 248 | project 249 | │ 250 | ├─ docs 251 | │ │ 252 | │ ├─ README.md 253 | │ │ 254 | │ ├─ catalog.md 255 | │ │ 256 | │ └─.vuepress 257 | │ │ │ 258 | │ │ └─config.js 259 | │ └─ 你的文档 260 | │ 261 | ├─ package.json 262 | │ 263 | └─ node_modules 264 | ``` 265 | 266 | ## 效果图 267 | ### 主页 268 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225330395.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 269 | 270 | ### 目录 271 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225600826.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 272 | 273 | ### 内容 274 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225521690.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 275 | 276 | ### 其他 277 | ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200106225644433.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2xlbWlzaQ==,size_16,color_FFFFFF,t_70) 278 | 279 | ### 手机端预览效果 280 | - ![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001515195.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/2019121700154317.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001553253.png)![在这里插入图片描述](https://img-blog.csdnimg.cn/20191217001614921.png) 281 | 282 | ## 全部配置 283 | ```js 284 | // .vuepress/config.js 285 | module.exports = { 286 | title: 'YATING',//网站名称 287 | description: '用心写代码,不辜负程序员之名',//网站描述 288 | //head标签 289 | head: [ 290 | ['link', { rel: 'stylesheet', href: '/img/logo.ico' }],//注意"/"就是public资源目录。标签的logo 291 | ['script', { src: 'https://cdn.bootcss.com/jquery/3.4.1/jquery.js' }] 292 | ], 293 | themeConfig: { 294 | author:'tinger', 295 | headImg:'https://yating.online/res/img/yating.jpg',//选填:头像 296 | //导航栏 297 | nav: [ 298 | { text: '主页', link: '/' }, 299 | { text: '目录',link:'/config/catalog'}, 300 | { text: '项目列表', link: '/config/about' }, 301 | { text: 'Github',type:'url', link: 'https://github.com/Chenyating' }, 302 | ], 303 | catalogUrl:'/catalog',//必填 目录路径 304 | lastUpdated: 'Last Updated',//必填:文章显示最新修改时间 305 | smoothScroll: true,//选填 306 | //选填/live2d模型路径 307 | live2dModel:'/live2d/model/poi/poi.model.json', 308 | pageNum:5,//选填:目录每页显示条数 309 | gitalk:{//选填:gitalk留言设置 310 | clientID: '5b8613cfe15e02db85b7', 311 | clientSecret: 'd4129094c33b8da73e873470fb89aea53dfaf396', 312 | repo: 'Chenyating.github.io', 313 | owner: 'chenyating', 314 | admin: ['Chenyating'], 315 | distractionFreeMode: false // Facebook-like distraction free mode 316 | }, 317 | footer:'粤ICP备案号:18150247号'//选填 318 | }, 319 | theme:'ting'//必填:使用vuepress-theme-ting 主题 320 | } 321 | ``` 322 | 323 | ## 感谢阅读 324 | 如果你喜欢这个主题,请给我一个start,给予我一个鼓励吧~蟹蟹~ 325 | [github项目](https://github.com/Chenyating/vuepress-theme-ting) 326 | 327 | 328 | ## 其他 329 | 如果你在使用过程中遇到什么问题,可以与我联系,记得给我个start哟~ -------------------------------------------------------------------------------- /ting/components/ting-about.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 33 | 34 | 103 | -------------------------------------------------------------------------------- /ting/components/ting-bg.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 148 | 149 | 161 | -------------------------------------------------------------------------------- /ting/components/ting-caroulse.vue: -------------------------------------------------------------------------------- 1 | 23 | 24 | 25 | 128 | -------------------------------------------------------------------------------- /ting/components/ting-content.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 75 | 76 | -------------------------------------------------------------------------------- /ting/components/ting-gitalk.vue: -------------------------------------------------------------------------------- 1 | 5 | 27 | 32 | -------------------------------------------------------------------------------- /ting/components/ting-live2d.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 56 | 57 | 101 | -------------------------------------------------------------------------------- /ting/components/ting-loading.vue: -------------------------------------------------------------------------------- 1 | 6 | 43 | -------------------------------------------------------------------------------- /ting/components/ting-nav.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 39 | 40 | 153 | -------------------------------------------------------------------------------- /ting/components/ting-pagecatalog.vue: -------------------------------------------------------------------------------- 1 | 30 | 31 | 111 | 112 | -------------------------------------------------------------------------------- /ting/components/ting-search.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 98 | 99 | -------------------------------------------------------------------------------- /ting/components/ting-type.vue: -------------------------------------------------------------------------------- 1 | 28 | 29 | 96 | 97 | -------------------------------------------------------------------------------- /ting/enhanceApp.js: -------------------------------------------------------------------------------- 1 | import ifresh from 'ifresh-ui'; 2 | import 'ifresh-ui/lib/ifresh-ui.css' 3 | import VueHighlightJS from 'vue-highlightjs' 4 | import 'highlight.js/styles/paraiso-light.css' 5 | export default ({ 6 | Vue, // VuePress 正在使用的 Vue 构造函数 7 | options, // 附加到根实例的一些选项 8 | router, // 当前应用的路由实例 9 | siteData // 站点元数据 10 | }) => { 11 | Vue.use(ifresh) 12 | Vue.use(VueHighlightJS) 13 | 14 | } -------------------------------------------------------------------------------- /ting/global-components/Badge.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 45 | -------------------------------------------------------------------------------- /ting/index.js: -------------------------------------------------------------------------------- 1 | // themePath/index.js 2 | module.exports = { 3 | extend: '@vuepress/theme-default' 4 | } -------------------------------------------------------------------------------- /ting/layouts/404.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 37 | 38 | 53 | -------------------------------------------------------------------------------- /ting/layouts/GlobalLayout.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 46 | 47 | 54 | -------------------------------------------------------------------------------- /ting/layouts/Layout.vue: -------------------------------------------------------------------------------- 1 | 9 | 31 | 38 | -------------------------------------------------------------------------------- /ting/layouts/index.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 62 | 63 | 85 | -------------------------------------------------------------------------------- /ting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vuepress-theme-ting", 3 | "version": "2.0.2", 4 | "description": "小清新看板娘主题,small fresh vuepress theme vuepress theme Ting", 5 | "main": "./index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "postinstall": "node ./public/js/about.js" 9 | }, 10 | "author": { 11 | "name": "chenyating", 12 | "email": "924471303@qq.com", 13 | "url": "https://www.yating.online/" 14 | }, 15 | "license": "ISC", 16 | "keywords": [ 17 | "vuepress", 18 | "vuepressjs", 19 | "Theme", 20 | "vuepress-Theme" 21 | ], 22 | "homepage": "https://www.yating.online/", 23 | "bugs": { 24 | "url": "https://github.com/Chenyating/vuepress-theme-ting/issues" 25 | }, 26 | "repository": { 27 | "type": "git", 28 | "url": "git@github.com:Chenyating/vuepress-theme-ting.git" 29 | }, 30 | "dependencies": { 31 | "consolecolors": "^0.33.2-b", 32 | "gitalk": "^1.5.0", 33 | "jquery": "^3.4.1" 34 | } 35 | } -------------------------------------------------------------------------------- /ting/public/js/about.js: -------------------------------------------------------------------------------- 1 | require('consolecolors'); 2 | console.log(` 3 | @ @ @ @ 4 | @@@@@@ @ @@ @ @ 5 | @ @ @ @ @@@@@@@@@@ 6 | @ @ @@@@@@@@@ @ 7 | @ @ @@@ @ @@@@ @@@@@@@@ 8 | @ @ @ @ @ @ @ @ @ 9 | @ @ @ @ @ @ @@@@@@@@`.magenta) 10 | console.log(`HELLO,I AM YATING.(〃'▽'〃)Thank you for using the theme.`.green) 11 | console.log(` @@@@@@ @@@@@@@@ @ @ 12 | @@ @ @ @ @ @@@@@@@@@@ 13 | @@ @ @ @@ @ @ @ 14 | @ @ @@@@@@@@ @@ @@@@@@@@ 15 | @@ @ @ @ @@ @ 16 | @ @ @ @ @ @@ @ 17 | @ @ @ @@ @ @ 18 | @@@ @@@@@@@@ @ @@@ 19 | `.magenta) 20 | 21 | console.log(`https://github.com/Chenyating/vuepress-theme-ting(〃'▽'〃)`.red) 22 | console.log(` If you like, please give me a starヾ(✿゚▽゚)ノ`.black.whiteBG) -------------------------------------------------------------------------------- /ting/public/js/message.js: -------------------------------------------------------------------------------- 1 | var home_Path = 'https://yating.world/' 2 | var result = { 3 | mouseover: [{ 4 | selector: ".tag-face", 5 | text: ["要去——{text}吗?"] 6 | }, 7 | { 8 | selector: ".catalog .catalog-tit", 9 | text: ["要看看 《{text}》 么?"] 10 | }, 11 | { 12 | selector: ".tag", 13 | text: ["分个类一定有你想看的~"] 14 | }, 15 | { 16 | selector: ".search-box", 17 | text: ["要搜索什么东西呢,需要帮忙吗?"] 18 | } 19 | ], 20 | click: [{ 21 | selector: ".nav", 22 | text: ["是不是也喜欢这个主题呢?看看关于站点你也能拥有哦~"] 23 | }, 24 | { 25 | selector: ".taglist", 26 | text: ["这都是我平时积累的笔记呢~","爱学习是个好宝宝~,相信你也是!"] 27 | }, 28 | { 29 | selector: ".tag-box", 30 | text: ["这些都是我平时积累的笔记呢"] 31 | } 32 | ] 33 | } 34 | 35 | function renderTip(template, context) { 36 | var tokenReg = /(\\)?\{([^\{\}\\]+)(\\)?\}/g; 37 | return template.replace(tokenReg, function (word, slash1, token, slash2) { 38 | if (slash1 || slash2) { 39 | return word.replace('\\', ''); 40 | } 41 | var variables = token.replace(/\s/g, '').split('.'); 42 | var currentObject = context; 43 | var i, length, variable; 44 | for (i = 0, length = variables.length; i < length; ++i) { 45 | variable = variables[i]; 46 | currentObject = currentObject[variable]; 47 | if (currentObject === undefined || currentObject === null) return ''; 48 | } 49 | return currentObject; 50 | }); 51 | } 52 | 53 | String.prototype.renderTip = function (context) { 54 | return renderTip(this, context); 55 | }; 56 | 57 | var re = /x/; 58 | console.log(re); 59 | re.toString = function () { 60 | showMessage('哈哈,你打开了控制台,是想要看看我的秘密吗?', 5000); 61 | return ''; 62 | }; 63 | 64 | $(document).on('copy', function () { 65 | showMessage('你都复制了些什么呀,转载要记得加上出处哦~~', 5000); 66 | }); 67 | 68 | function initTips() { 69 | $.each(result.mouseover, function (index, tips) { 70 | $(tips.selector).mouseover(function () { 71 | var text = tips.text; 72 | if (Array.isArray(tips.text)) text = tips.text[Math.floor(Math.random() * tips.text.length + 1) - 1]; 73 | text = text.renderTip({ 74 | text: $(this).text() 75 | }); 76 | showMessage(text, 1000); 77 | }); 78 | }); 79 | $.each(result.click, function (index, tips) { 80 | $(tips.selector).click(function () { 81 | var text = tips.text; 82 | if (Array.isArray(tips.text)) text = tips.text[Math.floor(Math.random() * tips.text.length + 1) - 1]; 83 | text = text.renderTip({ 84 | text: $(this).text() 85 | }); 86 | showMessage(text, 3000); 87 | }); 88 | }); 89 | } 90 | initTips(); 91 | 92 | (function () { 93 | var text; 94 | if (document.referrer !== '') { 95 | var referrer = document.createElement('a'); 96 | referrer.href = document.referrer; 97 | text = '嗨!来自 ' + referrer.hostname + ' 的朋友!'; 98 | var domain = referrer.hostname.split('.')[1]; 99 | if (domain == 'baidu') { 100 | text = '嗨! 来自 百度搜索 的朋友!
欢迎访问「 ' + document.title.split(' - ')[0] + ' 」'; 101 | } else if (domain == 'so') { 102 | text = '嗨! 来自 360搜索 的朋友!
欢迎访问「 ' + document.title.split(' - ')[0] + ' 」'; 103 | } else if (domain == 'google') { 104 | text = '嗨! 来自 谷歌搜索 的朋友!
欢迎访问「 ' + document.title.split(' - ')[0] + ' 」'; 105 | } 106 | } else { 107 | var now = (new Date()).getHours(); 108 | if (now > 23 || now <= 5) { 109 | text = '你是夜猫子呀?这么晚还不睡觉,明天起的来嘛?'; 110 | } else if (now > 5 && now <= 7) { 111 | text = '早上好!一日之计在于晨,美好的一天就要开始了!'; 112 | } else if (now > 7 && now <= 11) { 113 | text = '上午好!工作顺利嘛,不要久坐,多起来走动走动哦!'; 114 | } else if (now > 11 && now <= 14) { 115 | text = '中午了,工作了一个上午,现在是午餐时间!'; 116 | } else if (now > 14 && now <= 17) { 117 | text = '午后很容易犯困呢,今天的运动目标完成了吗?'; 118 | } else if (now > 17 && now <= 19) { 119 | text = '傍晚了!窗外夕阳的景色很美丽呢,最美不过夕阳红~~'; 120 | } else if (now > 19 && now <= 21) { 121 | text = '晚上好,今天过得怎么样?'; 122 | } else if (now > 21 && now <= 23) { 123 | text = '已经这么晚了呀,早点休息吧,晚安~~'; 124 | } else { 125 | text = '嗨~ 你一定很爱学习吧!'; 126 | } 127 | } 128 | showMessage(text, 12000); 129 | })(); 130 | 131 | window.setInterval(showHitokoto, 30000); 132 | 133 | function showHitokoto() { 134 | $.getJSON('https://v1.hitokoto.cn/', function (result) { 135 | showMessage(result.hitokoto, 5000); 136 | }); 137 | } 138 | 139 | function showMessage(text, timeout) { 140 | if (Array.isArray(text)) text = text[Math.floor(Math.random() * text.length + 1) - 1]; 141 | $('.message').stop(); 142 | $('.message').html(text).fadeTo(200, 1); 143 | if (timeout === null) timeout = 5000; 144 | hideMessage(timeout); 145 | } 146 | 147 | function hideMessage(timeout) { 148 | $('.message').stop().css('opacity', 1); 149 | if (timeout === null) timeout = 5000; 150 | $('.message').delay(timeout).fadeTo(200, 0); 151 | } 152 | 153 | function initLive2d() { 154 | $('#landlord').hover(() => { 155 | $('.hide-button').fadeIn(600); 156 | }, () => { 157 | $('.hide-button').fadeOut(600) 158 | }) 159 | } 160 | initLive2d(); -------------------------------------------------------------------------------- /ting/styles/adaptation.styl: -------------------------------------------------------------------------------- 1 | // 适配展示 2 | .h5 { 3 | display: none !important; 4 | } 5 | 6 | // 窄屏 7 | @media (max-width: 750px) { 8 | .pc { 9 | display: none !important; 10 | } 11 | 12 | .h5 { 13 | display: block !important; 14 | } 15 | } -------------------------------------------------------------------------------- /ting/styles/animation.styl: -------------------------------------------------------------------------------- 1 | @keyframes opacitying { 2 | 0% { 3 | opacity: 0.4; 4 | } 5 | 6 | 50% { 7 | opacity: 1; 8 | } 9 | 10 | 100% { 11 | opacity: 0.4; 12 | } 13 | } 14 | 15 | @keyframes rorating { 16 | 0% { 17 | transform: rotateZ(10deg); 18 | } 19 | 20 | 50% { 21 | transform: rotateZ(0deg); 22 | } 23 | 24 | 100% { 25 | transform: rotateZ(10deg); 26 | } 27 | } 28 | @keyframes show { 29 | 0% { 30 | opacity : 0; 31 | } 32 | 33 | 100% { 34 | opacity : 1; 35 | } 36 | } 37 | @keyframes hide { 38 | 0% { 39 | opacity : 0; 40 | } 41 | 42 | 100% { 43 | opacity : 1; 44 | } 45 | } -------------------------------------------------------------------------------- /ting/styles/index.styl: -------------------------------------------------------------------------------- 1 | html, body { 2 | padding: 0; 3 | margin: 0; 4 | background-color: #fff; 5 | overflow-x: hidden; 6 | scroll-behavior: smooth; 7 | cursor: default; 8 | } 9 | 10 | .hide { 11 | opacity: 0; 12 | pointer-events: none; 13 | transition: 0.3s all ease-in; 14 | } 15 | 16 | .show { 17 | opacity: 1; 18 | pointer-events: auto; 19 | transition: 0.3s all ease-in; 20 | } 21 | 22 | @require './adaptation'; 23 | @require './markdown'; 24 | @require './animation'; 25 | -------------------------------------------------------------------------------- /ting/styles/markdown.styl: -------------------------------------------------------------------------------- 1 | // markdown文章样式重制 2 | h1, h2, h3, h4, h5, h6 { 3 | border: 0; 4 | font-weight: normal; 5 | cursor: pointer; 6 | 7 | .header-anchor { 8 | opacity: 0 !important; 9 | } 10 | } 11 | 12 | h1 { 13 | font-size: 1.7em; 14 | margin: 1em auto; 15 | &:before { 16 | text-align: left; 17 | content: '《'; 18 | } 19 | 20 | &:after { 21 | text-align: right; 22 | content: '》'; 23 | } 24 | } 25 | 26 | h2 { 27 | font-size: 1.4em; 28 | margin: 1em auto; 29 | font-weight: bold; 30 | position: relative; 31 | display: flex; 32 | align-items: center; 33 | justify-content: center; 34 | 35 | &:before { 36 | content: ''; 37 | width: 0; 38 | height: 0; 39 | border: solid 0.5em #fda6bc; 40 | border-right: transparent 0.5em solid; 41 | } 42 | } 43 | 44 | h3 { 45 | text-align: left; 46 | font-size: 1.2em; 47 | font-weight: bold; 48 | margin: 1em auto; 49 | } 50 | 51 | h4 { 52 | text-align: left; 53 | font-size: 1em; 54 | font-weight: bold; 55 | margin: 1em auto; 56 | } 57 | 58 | blockquote { 59 | display: block; 60 | border: 1px dashed #62a7d8; 61 | font-size: 1em; 62 | line-height: 1.75em; 63 | color: #62a7d8; 64 | padding: 1em; 65 | text-indent: 2em; 66 | } 67 | 68 | p { 69 | text-indent: 2em; 70 | 71 | a { 72 | font-weight: bold; 73 | color: #fda6bc; 74 | } 75 | 76 | img { 77 | width: 100%; 78 | height: 100%; 79 | } 80 | } 81 | 82 | hr { 83 | border-top: 1px dashed #62a7d8; 84 | margin-top: 2em; 85 | } 86 | 87 | ul, ol { 88 | border: 1px dashed #fda6bc; 89 | border-left: 0; 90 | padding: 1em; 91 | margin: 1em; 92 | position: relative; 93 | 94 | li { 95 | ul, ol { 96 | border: 0; 97 | border-left: 0; 98 | padding: 0; 99 | margin: 0; 100 | text-indent: 1em; 101 | } 102 | 103 | img { 104 | max-width: 500px; 105 | max-height: 500px; 106 | object-fit: contain; 107 | } 108 | } 109 | } --------------------------------------------------------------------------------