-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ba0e39
commit 9fd3a80
Showing
9 changed files
with
345 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
## Information | ||
Series Name : ORIZIN Agent | ||
Edition : ORIZIN Agent HTML Based | ||
|
||
To read other information, check resource/information.txt. | ||
|
||
## Versioning | ||
The meaning of the version, "a.b.c.de-f" is shown below: | ||
|
||
|Place|Meaning|Character Type|Minimum| | ||
|:-----:|:-------:|:--:|:--:| | ||
|a|Major Version|Number|0| | ||
|b|Minor Version|Number|0| | ||
|c|Build (Total Version)|Number|1| | ||
|d|Revision|Number|0| | ||
|e|Release|Alphabet (dev or nothing)|N/A| | ||
|f|Development Code Name|Alphabet|N/A| | ||
|
||
The meaning of the words are shown below: | ||
|
||
|Word|Meaning| | ||
|:-----:|:-------:| | ||
|Major Version|Big functions were added or there are big changes in UI.| | ||
|Minor Version|Small functions were added or there are small changes in UI.| | ||
|Build (Total Version)|When the version was changed, this number increase.| | ||
|Revision|There are bug fixes or changed comments in the program.| | ||
|Release|If the program is "Develop", the value is "dev".| | ||
|Development Code Name|Code name of the major (or minor) version.| | ||
|
||
## Releases | ||
|
||
### [v0.1.2.0dev-Albatross] -2020-01-21 | ||
#### Added | ||
- 108 responses were added to dictionary. | ||
|
||
#### Changed | ||
- The panel layout supports vertical screens by changing panel layout and panel size. | ||
|
||
### [v0.0.1.0dev-Albatross] -2019-12-26 | ||
#### Added | ||
- privacy_policy.txt was added. | ||
|
||
#### Notice | ||
In this release, there were some changes, but the version was not changed. | ||
|
||
### [v0.0.1.0dev-Albatross] -2019-12-25 | ||
#### Added | ||
- All files of ORIZIN Agent HTML Based was released. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1 @@ | ||
って頭いいね | ||
なこと言ってないよね | ||
はっきり答えてよ | ||
そうするよ | ||
知ってたよ | ||
そんな残念がらなくてもいいのに | ||
君ってクロスプラットフォーム会 | ||
ジョークも言うんだね | ||
収集車が来たよ | ||
何か音楽流してよ | ||
音楽流しってことだよ | ||
ここにテキストを入力します。 | ||
ことは何も聞いてないよ | ||
なんか照れるぜな | ||
照れるなんて言ってないぞ | ||
マジ何なんだよ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<div class="outline"> | ||
<div class="eye"> | ||
<div></div> | ||
</div> | ||
<div class="eye"> | ||
<div></div> | ||
</div> | ||
</div> | ||
<style type="text/css"> | ||
:root { | ||
--face_width: 90vw; | ||
--face_color: #ff6a00; | ||
--eye_outline_color: #ff6a00; | ||
--eye_fill_color: #ff6a00; | ||
} | ||
html, body, main { | ||
background: black; | ||
} | ||
.outline { | ||
width: var(--face_width); | ||
height: calc(var(--face_width)*21/50); | ||
background: transparent; | ||
border: solid calc(var(--face_width)/100) var(--face_color); | ||
border-radius: calc(var(--face_width)*21/100); | ||
text-align: center; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.eye { | ||
width: calc(var(--face_width)/10); | ||
height: calc(var(--face_width)*9/50); | ||
background: transparent; | ||
border: solid calc(var(--face_width)/100) var(--eye_outline_color); | ||
border-radius: calc(var(--face_width)/10); | ||
margin: calc(var(--face_width)*6/50); | ||
display: inline-block; | ||
} | ||
.eye div { | ||
margin: calc(var(--face_width)/50); | ||
width: calc(var(--face_width)*3/50); | ||
height: calc(var(--face_width)*7/50); | ||
background: var(--eye_fill_color); | ||
border-radius: calc(var(--face_width)*3/50); | ||
animation: eye_blink 30s linear 5s infinite normal; | ||
} | ||
@keyframes eye_blink { | ||
0% { | ||
height: calc(var(--face_width)*7/50); | ||
} | ||
0.25% { | ||
height: 0; | ||
margin-top: calc(var(--face_width)*9/100); | ||
} | ||
0.5% { | ||
height: 0; | ||
margin-top: calc(var(--face_width)*9/100); | ||
} | ||
0.75% { | ||
height: calc(var(--face_width)*7/50); | ||
margin-top: calc(var(--face_width)/50); | ||
} | ||
} | ||
.mouth { | ||
width: 1calc(var(--face_width)/10); | ||
height: calc(var(--face_width)*6/50); | ||
background: transparent; | ||
border: solid 20px #00ffff; | ||
border-top: none; | ||
filter: drop-shadow(0 0 10px #009999); | ||
border-radius: 0 0 1calc(var(--face_width)/10) 1calc(var(--face_width)/10); | ||
margin-left: calc(var(--face_width)*9/50); | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<div class="outline"> | ||
<div class="eye"> | ||
<div></div> | ||
</div> | ||
<div class="eye"> | ||
<div></div> | ||
</div> | ||
</div> | ||
<style type="text/css"> | ||
:root { | ||
--face_width: 90vw; | ||
--face_color: #ff6a00; | ||
--eye_outline_color: #ff6a00; | ||
--eye_fill_color: #ff6a00; | ||
--animation_time: 30s; | ||
} | ||
html, body, main { | ||
background: black; | ||
} | ||
.outline { | ||
width: var(--face_width); | ||
height: calc(var(--face_width)*21/50); | ||
background: transparent; | ||
border: solid calc(var(--face_width)/100) var(--face_color); | ||
border-radius: calc(var(--face_width)*21/100); | ||
text-align: center; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.eye { | ||
width: calc(var(--face_width)*9/50); | ||
height: calc(var(--face_width)*9/50); | ||
background: transparent; | ||
border: solid calc(var(--face_width)/100) var(--eye_outline_color); | ||
border-radius: calc(var(--face_width)/10); | ||
margin: calc(var(--face_width)*6/50); | ||
display: inline-block; | ||
} | ||
.eye div { | ||
margin: calc(var(--face_width)/50); | ||
width: calc(var(--face_width)*7/50); | ||
height: calc(var(--face_width)*7/50); | ||
background: var(--eye_fill_color); | ||
border-radius: calc(var(--face_width)*7/50); | ||
animation: eye_blink var(--animation_time) linear 5s infinite normal; | ||
} | ||
@keyframes eye_blink { | ||
0% { | ||
height: calc(var(--face_width)*7/50); | ||
} | ||
0.25% { | ||
height: 0; | ||
margin-top: calc(var(--face_width)*9/100); | ||
} | ||
0.5% { | ||
height: 0; | ||
margin-top: calc(var(--face_width)*9/100); | ||
} | ||
0.75% { | ||
height: calc(var(--face_width)*7/50); | ||
margin-top: calc(var(--face_width)/50); | ||
} | ||
} | ||
.mouth { | ||
width: 1calc(var(--face_width)/10); | ||
height: calc(var(--face_width)*6/50); | ||
background: transparent; | ||
border: solid 20px #00ffff; | ||
border-top: none; | ||
filter: drop-shadow(0 0 10px #009999); | ||
border-radius: 0 0 1calc(var(--face_width)/10) 1calc(var(--face_width)/10); | ||
margin-left: calc(var(--face_width)*9/50); | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.