Skip to content

Commit

Permalink
aaa
Browse files Browse the repository at this point in the history
  • Loading branch information
git@nova's optiplex committed Aug 23, 2024
1 parent df45903 commit 1d7fe4f
Show file tree
Hide file tree
Showing 3 changed files with 165 additions and 1 deletion.
164 changes: 164 additions & 0 deletions assets/sysappfiles/oobe/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OOBE</title>
</head>

<body>
<!-- <div class="circle">
<div class="row1">
<img src="../../img/systemIcons/cast.svg" class="logo" alt="">
<img src="../../img/systemIcons/cast.svg" class="logo" alt="">
<img src="../../img/systemIcons/cast.svg" class="logo" alt="">
</div>
<div class="row2">
<img src="../../img/systemIcons/cast.svg" class="logo" alt="">
<img src="../../img/systemIcons/cast.svg" class="logo" alt="">
</div>
<div class="row3">
<img src="../../img/systemIcons/cast.svg" class="logo" alt="">
<img src="../../img/systemIcons/cast.svg" class="logo" alt="">
<img src="../../img/systemIcons/cast.svg" class="logo" alt="">
</div>
<img src="../../img/systemIcons/os.svg" class="oslogo" alt="">
</div>
<h1 id="name">NovaOS</h1>
<h3 id="slogan">The internet OS</h3>
-->
<div class="circle">
<img src="../../img/systemIcons/cast.svg" class="item" alt="">
<img src="../../img/systemIcons/cast.svg" class="item" alt="">
<img src="../../img/systemIcons/cast.svg" class="item" alt="">
<img src="../../img/systemIcons/cast.svg" class="item" alt="">
<img src="../../img/systemIcons/cast.svg" class="item" alt="">
<img src="../../img/systemIcons/cast.svg" class="item" alt="">
<img src="../../img/systemIcons/cast.svg" class="item" alt="">
<img src="../../img/systemIcons/cast.svg" class="item" alt="">
</div>
<img src="../../img/systemIcons/cast.svg" class="item oslogo" alt="">

<style>
body, html {
height: 100%;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
width: 100vw;
}

.circle {
position: relative;
width: 500px; /* Circle diameter */
height: 500px;
}

.item {
position: absolute;
width: 100px; /* Item size */
height: 100px;
text-align: center;
line-height: 100px;
border-radius: 50%;
}
.circle .item{
animation: comein 5s ease-in-out;
transform-origin: center !important;
}
/* Positioning the items around the circle */
.circle .item:nth-child(1) {
top: 0;
left: 50%;
transform: translate(-50%, 0);
}

.circle .item:nth-child(2) {
top: 25%;
left: 85%;
transform: translate(-50%, -50%);
}

.circle .item:nth-child(3) {
top: 50%;
left: 100%;
transform: translate(-50%, -50%);
}

.circle .item:nth-child(4) {
top: 75%;
left: 85%;
transform: translate(-50%, -50%);
}

.circle .item:nth-child(5) {
top: 100%;
left: 50%;
transform: translate(-50%, -100%);
}

.circle .item:nth-child(6) {
top: 75%;
left: 15%;
transform: translate(-50%, -50%);
}

.circle .item:nth-child(7) {
top: 50%;
left: 0;
transform: translate(-50%, -50%);
}

.circle .item:nth-child(8) {
top: 25%;
left: 15%;
transform: translate(-50%, -50%);
}
.oslogo{
width: 300px;
height: 300px;
}
@keyframes comein {
0% {
width: 0px;
height: 0px;
filter: hue-rotate(360deg);
opacity: 0;
}
10% {
filter: hue-rotate(0deg);
width: 100px;
height: 100px;
opacity: 1;
rotate: 0deg;
}
30%{
rotate: 250deg;
scale: 0;
opacity: 0.5;
}
50%{
rotate: 0deg;
scale: 0;
opacity: 0;
}
}
@keyframes rotate {
0% {
rotate: 0deg;
}
50% {
rotate: 360deg;
}
100% {
rotate: 0deg;
}
}
</style>
</body>

</html>
Empty file.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="shortcut icon" href="./assets/img/favicon.png">
<link rel="apple-touch-icon" href="./assets/img/noround.png">
<title>WebDesk</title>
<title>NovaOS</title>
</head>
<script>
var deskid;
Expand Down

0 comments on commit 1d7fe4f

Please sign in to comment.