diff --git a/assets/alla_screenshot.png b/assets/alla_screenshot.png new file mode 100644 index 0000000..1ff36e0 Binary files /dev/null and b/assets/alla_screenshot.png differ diff --git a/assets/css/loading.css b/assets/css/loading.css new file mode 100644 index 0000000..d400bcd --- /dev/null +++ b/assets/css/loading.css @@ -0,0 +1,88 @@ +#loading { + position: absolute; + background-color: #FFF; + top: 0px; + left: 0px; + width: 100%; + height: 100%; + z-index: 9999; +} + +#loading_bg { + background-color: rgba(0, 0, 0, 0.7); +} + +.loader { + width: 250px; + height: 50px; + line-height: 50px; + text-align: center; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + font-family: helvetica, arial, sans-serif; + text-transform: uppercase; + font-weight: 900; + color: rgba(0, 0, 0, 0.5); + letter-spacing: 0.2em; +} + +.loader::before, +.loader::after { + content: ""; + display: block; + width: 15px; + height: 15px; + background:rgba(0, 0, 0, 0.5); + position: absolute; + -webkit-animation: load .7s infinite alternate ease-in-out; + animation: load .7s infinite alternate ease-in-out; +} + +.loader::before { + top: 0; +} + +.loader::after { + bottom: 0; +} + +@-webkit-keyframes load { + 0% { + left: 0; + height: 30px; + width: 15px; + } + + 50% { + height: 8px; + width: 40px; + } + + 100% { + left: 235px; + height: 30px; + width: 15px; + } +} + +@keyframes load { + 0% { + left: 0; + height: 30px; + width: 15px; + } + + 50% { + height: 8px; + width: 40px; + } + + 100% { + left: 235px; + height: 30px; + width: 15px; + } +} \ No newline at end of file diff --git a/assets/css/main.css b/assets/css/main.css new file mode 100644 index 0000000..a78a5a9 --- /dev/null +++ b/assets/css/main.css @@ -0,0 +1,36 @@ +@font-face { + font-family: 'Font1'; + src: url(../font/CangJiGaoDeGuoMiaoHei.woff); +} + +h1 { + border: 2px solid white; + border-radius: 5px; + margin-top: 2%; + margin-right: 10%; + margin-bottom: auto; + margin-left: 10%; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + background-color: rgb(255, 255, 255); + font-family: Font1; +} + +p { + border: 2px solid white; + border-radius: 5px; + margin-top: auto; + margin-right: 10%; + margin-bottom: auto; + margin-left: 10%; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + background-color: rgb(255, 255, 255); + font-family: Font1; +} + +body { + background-image: linear-gradient(45deg, transparent 0%, transparent 55%, rgba(64, 64, 64, 0.04) 55%, rgba(64, 64, 64, 0.04) 76%, transparent 76%, transparent 100%), linear-gradient(135deg, transparent 0%, transparent 14%, rgba(64, 64, 64, 0.04) 14%, rgba(64, 64, 64, 0.04) 41%, transparent 41%, transparent 100%), linear-gradient(45deg, transparent 0%, transparent 2%, rgba(64, 64, 64, 0.04) 2%, rgba(64, 64, 64, 0.04) 18%, transparent 18%, transparent 100%), linear-gradient(135deg, transparent 0%, transparent 61%, rgba(64, 64, 64, 0.04) 61%, rgba(64, 64, 64, 0.04) 71%, transparent 71%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255)); +} + +.a_dl{ + color: lightpink; +} \ No newline at end of file diff --git a/assets/css/topbar.css b/assets/css/topbar.css new file mode 100644 index 0000000..289444c --- /dev/null +++ b/assets/css/topbar.css @@ -0,0 +1,50 @@ +* { + margin: 0; + padding: 0; +} + +/* 装饰Topbar的div */ +.topbar { + height: 40px; + font-size: 12px; + border: 2px solid white; + border-radius: 5px; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + background-color: rgb(255, 255, 255); +} + +/* 使得列表值横向排列 */ +.topbar li { + display: inline; + /* 装饰topbar中的字体 *BOBOBO*/ + color: rgb(0, 0, 0); + /* 字间距 */ + margin-right: 13px; + font-size: large; + font-family:Font1; +} + +/* 使得两个ul在同一行显示 */ +.topbar ul { + /* border: 1px red solid; */ + display: inline-block; + + /* ul行高设置 */ + line-height: 38px; +} + +/* 使得右侧ul靠页面右端显示 */ +.topbar-right { + position: absolute; + right: 150px; + +} + +.topbar-left { + margin-left: 150px; +} + +a{ + text-decoration: none; + color: black; +} diff --git a/assets/font/CangJiGaoDeGuoMiaoHei.woff b/assets/font/CangJiGaoDeGuoMiaoHei.woff new file mode 100644 index 0000000..bfe634d Binary files /dev/null and b/assets/font/CangJiGaoDeGuoMiaoHei.woff differ diff --git a/assets/font/Quirky-Black.woff b/assets/font/Quirky-Black.woff new file mode 100644 index 0000000..e11e8ea Binary files /dev/null and b/assets/font/Quirky-Black.woff differ diff --git a/assets/font/Quirky-Light.woff b/assets/font/Quirky-Light.woff new file mode 100644 index 0000000..7ac4131 Binary files /dev/null and b/assets/font/Quirky-Light.woff differ diff --git a/assets/js/loading.js b/assets/js/loading.js new file mode 100644 index 0000000..a7592fc --- /dev/null +++ b/assets/js/loading.js @@ -0,0 +1,10 @@ +console.log(document.readyState); + +window.onload = function () { + var obj = document.getElementById("loading"); + obj.innerHTML = "";//删除div内容 + //删除div + var parentObj = obj.parentNode;//获取div的父对象 + parentObj.removeChild(obj);//通过div的父对象把它删除 + console.log("loading completed."); +} \ No newline at end of file diff --git a/assets/js/snow.js b/assets/js/snow.js new file mode 100644 index 0000000..e69de29 diff --git a/download.html b/download.html new file mode 100644 index 0000000..1da904a --- /dev/null +++ b/download.html @@ -0,0 +1,69 @@ + + + + + + + + + Project ALLA Download Page - ALLA 官方下载站 + + + + + + + + + +
+
+
Loading...
+
+
+
+ + +
+

Project ALLA 下载页

+
+

+ 我们提供了多种平台的安装包

+ Windows:
+     下载适用于PC的安装包,双击运行ALLA.exe
+ Linux:
+     下载适用于PC的安装包,赋予ALLA.sh运行权限,然后从终端中启动
+ Android:
+     下载适用于Android手机的安装包,安装并允许“存储权限”
+ Web:
+     暂不开放
+

+
+

下载

+ Windows:
+     Windows_DLink
+ Linux:
+     Linux_DLink
+ Android:
+     Android_DLink
+


+

镜像下载

+ Windows:
+     Windows_DLink_Mirror
+ Linux:
+     Linux_DLink_Mirror
+ Android:
+     Android_DLink_Mirror
+


+ + + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..9962724 --- /dev/null +++ b/index.html @@ -0,0 +1,56 @@ + + + + + + + + + Project ALLA Download Page - ALLA 官方下载站 + + + + + + + + + + + +
+
+
Loading...
+
+
+
+ + +
+

Project ALLA

+
+

+ 最长的希腊语“Archaiomelesidonophrunicherata”是古希腊早期喜剧代表作家阿里斯多芬的作品《蜂》的一句台词。 +
+ ALLA是英语单词“ALL”和最长的希腊语“Archaiomelesidonophrunicherata”的缩写意为“皆为可爱之人”。 +
+ ALLA是一个心理恐怖视觉小说类型的游戏,游戏的定位为心理恐怖游戏,并且会在之后的游玩过程中慢慢加入恐怖元素,目前剧本里没有任何恐怖元素,但会在未来的开发中加入。 +
+ + 这是一个不是游戏的游戏,用以证明GAS组全员曾经存在过,即使GAS组成员不在世上了,或者被遗忘,但是这个游戏不会被抹除,我们仍然可以通过这个游戏来证明我们曾经存在过的事实。 + +

+
+

+ +

+ + + + + \ No newline at end of file