Compare commits
No commits in common. "f789e792a4fea6e8dc46796dc0018f7546c44c46" and "68fa501003fb714c57e52f10f83f472bf43858ca" have entirely different histories.
f789e792a4
...
68fa501003
@ -1,6 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { getPrettyDate, getUtcDate } from "~~/shared/metadata";
|
import { getPrettyDate, getUtcDate } from "~~/shared/metadata";
|
||||||
import type { AnyParsedContent } from "~~/shared/types";
|
import { AnyParsedContent } from "~~/shared/types";
|
||||||
|
|
||||||
const props = defineProps<{ doc: AnyParsedContent }>();
|
const props = defineProps<{ doc: AnyParsedContent }>();
|
||||||
|
|
||||||
|
@ -1,101 +0,0 @@
|
|||||||
<script setup lang="ts">
|
|
||||||
const props = defineProps<{ strings: string[]; class?: string }>();
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<h1 :class="[props.class, 'text-loop relative text-center w-full h-16']">
|
|
||||||
<span class="text absolute w-full" v-for="s in props.strings" :key="s">
|
|
||||||
{{ s }}
|
|
||||||
</span>
|
|
||||||
</h1>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped lang="scss">
|
|
||||||
@use "sass:math";
|
|
||||||
@mixin text-loop($els) {
|
|
||||||
.text-loop {
|
|
||||||
overflow: hidden;
|
|
||||||
$duration: 3s;
|
|
||||||
|
|
||||||
@if $els > 1 {
|
|
||||||
& > span {
|
|
||||||
display: block;
|
|
||||||
opacity: 0;
|
|
||||||
@for $i from 1 through $els {
|
|
||||||
&:nth-child(#{$i}) {
|
|
||||||
animation: move-test-#{$i} $duration * $els infinite;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@for $i from 1 through $els {
|
|
||||||
@keyframes move-test-#{$i} {
|
|
||||||
$interval: calc(100% / $els);
|
|
||||||
$upper_bound: $interval * $i;
|
|
||||||
$lower_bound: $interval * ($i - 1);
|
|
||||||
|
|
||||||
// we try to make the previous exit and the next enter
|
|
||||||
// at the same time, also taking care of negatives
|
|
||||||
|
|
||||||
// for i = 1, this is negative, so start the animation at the end of the cycle
|
|
||||||
@if $i > 1 {
|
|
||||||
0% {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(100%);
|
|
||||||
}
|
|
||||||
|
|
||||||
#{$lower_bound - $interval * 0.05} {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(100%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#{$lower_bound} {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0%);
|
|
||||||
}
|
|
||||||
|
|
||||||
#{$lower_bound + $interval * 0.95} {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0%);
|
|
||||||
}
|
|
||||||
|
|
||||||
#{$upper_bound} {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(-100%);
|
|
||||||
}
|
|
||||||
|
|
||||||
@if $i == 1 {
|
|
||||||
// reset el 1
|
|
||||||
#{100% - $interval * 0.05} {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(100%);
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0%);
|
|
||||||
}
|
|
||||||
} @else {
|
|
||||||
100% {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(-100%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* For one element, we have the following pattern. To expand it to 2+
|
|
||||||
* els, we divide 100% by the number of els and turn on the animation
|
|
||||||
* only at the correct time.
|
|
||||||
* -5%: invis
|
|
||||||
* 0%: vis
|
|
||||||
* 95%: vis
|
|
||||||
* 100%: invis
|
|
||||||
*/
|
|
||||||
|
|
||||||
@include text-loop(3);
|
|
||||||
</style>
|
|
@ -1,6 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { revisions } from "@/data/siteRevisions";
|
import { revisions } from "@/data/siteRevisions";
|
||||||
useHead({ title: "Oeufs?" });
|
useHead({ title: "Eggworld" });
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -10,7 +10,7 @@ useHead({ title: "Oeufs?" });
|
|||||||
<footer
|
<footer
|
||||||
class="flex items-center justify-between p-3 bg-gray-100 w-full text-sm dark:bg-gray-800 flex-col md:flex-row gap-2"
|
class="flex items-center justify-between p-3 bg-gray-100 w-full text-sm dark:bg-gray-800 flex-col md:flex-row gap-2"
|
||||||
>
|
>
|
||||||
<label class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
<p>Revision:</p>
|
<p>Revision:</p>
|
||||||
<!--
|
<!--
|
||||||
the onchange is so bad - i'd rather it be done through vue
|
the onchange is so bad - i'd rather it be done through vue
|
||||||
@ -26,7 +26,7 @@ useHead({ title: "Oeufs?" });
|
|||||||
{{ r.title }}
|
{{ r.title }}
|
||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</label>
|
</div>
|
||||||
<div class="flex flex-col items-center">
|
<div class="flex flex-col items-center">
|
||||||
<p>
|
<p>
|
||||||
Licensed under the AGPL-3.0 on
|
Licensed under the AGPL-3.0 on
|
||||||
@ -49,9 +49,7 @@ useHead({ title: "Oeufs?" });
|
|||||||
html {
|
html {
|
||||||
background: white;
|
background: white;
|
||||||
color: black;
|
color: black;
|
||||||
transition:
|
transition: color 0.2s ease, background 0.2s ease;
|
||||||
color 0.2s ease,
|
|
||||||
background 0.2s ease;
|
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
scroll-behavior: smooth;
|
scroll-behavior: smooth;
|
||||||
|
@ -31,7 +31,7 @@ export default defineNuxtConfig({
|
|||||||
"@nuxt/content",
|
"@nuxt/content",
|
||||||
"@nuxtjs/tailwindcss",
|
"@nuxtjs/tailwindcss",
|
||||||
"@nuxtjs/color-mode",
|
"@nuxtjs/color-mode",
|
||||||
"@nuxtjs/sitemap",
|
"@funken-studio/sitemap-nuxt-3",
|
||||||
],
|
],
|
||||||
css: ["@/assets/css/main.scss"],
|
css: ["@/assets/css/main.scss"],
|
||||||
nitro: {
|
nitro: {
|
||||||
@ -42,11 +42,9 @@ export default defineNuxtConfig({
|
|||||||
typescript: {
|
typescript: {
|
||||||
shim: false,
|
shim: false,
|
||||||
},
|
},
|
||||||
site: {
|
/* @ts-expect-error */
|
||||||
url: process.env.BASE_URL || "https://eggworld.me",
|
|
||||||
},
|
|
||||||
sitemap: {
|
sitemap: {
|
||||||
strictNuxtContentPaths: true,
|
hostname: process.env.BASE_URL || "https://eggworld.me",
|
||||||
},
|
},
|
||||||
tailwindcss: {},
|
tailwindcss: {},
|
||||||
colorMode: {
|
colorMode: {
|
||||||
@ -96,9 +94,6 @@ export default defineNuxtConfig({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
experimental: {
|
experimental: {
|
||||||
sharedPrerenderData: true,
|
|
||||||
},
|
|
||||||
features: {
|
|
||||||
noScripts: true,
|
noScripts: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
29
package.json
29
package.json
@ -7,20 +7,21 @@
|
|||||||
"preview": "nuxt preview"
|
"preview": "nuxt preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@nuxt/content": "^2.12.0",
|
"@funken-studio/sitemap-nuxt-3": "^4.0.4",
|
||||||
"@nuxtjs/color-mode": "^3.3.2",
|
"@nuxt/content": "^2.6.0",
|
||||||
"@nuxtjs/sitemap": "^5.1.0",
|
"@nuxtjs/color-mode": "^3.2.0",
|
||||||
"@nuxtjs/tailwindcss": "^6.11.4",
|
"@nuxtjs/tailwindcss": "^6.7.0",
|
||||||
"@tailwindcss/typography": "^0.5.10",
|
"@tailwindcss/typography": "^0.5.9",
|
||||||
"@types/node": "^20.11.24",
|
"@types/node": "^20.2.5",
|
||||||
"dayjs": "^1.11.10",
|
"dayjs": "^1.11.7",
|
||||||
"nuxt": "3.10.3",
|
"nuxt": "3.5.2",
|
||||||
"prettier": "^3.2.5",
|
"prettier": "^3.1.1",
|
||||||
"reading-time": "^2.0.0-1",
|
"reading-time": "^2.0.0-1",
|
||||||
"rehype-katex": "^7.0.0",
|
"rehype-katex": "^6.0.3",
|
||||||
"remark-math": "^6.0.0",
|
"remark-math": "^5.1.1",
|
||||||
"sass": "^1.71.1",
|
"sass": "^1.62.1",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.0.4",
|
||||||
"vite-svg-loader": "^5.1.0"
|
"unist-util-visit": "^4.1.2",
|
||||||
|
"vite-svg-loader": "^4.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,14 +4,12 @@ import About from "@/components/index/about.vue";
|
|||||||
|
|
||||||
//definePageMeta({ layout: "withtop" });
|
//definePageMeta({ layout: "withtop" });
|
||||||
useTitle("Home", "Personal website!");
|
useTitle("Home", "Personal website!");
|
||||||
|
|
||||||
const welcomeStrings = ["Welcome!", "Bienvenue!", "欢迎!"];
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<main class="flex flex-col items-center justify-around gap-8">
|
<main class="flex flex-col items-center justify-around gap-8">
|
||||||
<div class="flex flex-col items-center">
|
<div class="flex flex-col items-center">
|
||||||
<HeaderLoop class="text-bitter font-bold" :strings="welcomeStrings" />
|
<h1 class="text-bitter font-bold">Welcome!</h1>
|
||||||
<p>What are you here to see?</p>
|
<p>What are you here to see?</p>
|
||||||
<p>
|
<p>
|
||||||
For my portfolio, please visit
|
For my portfolio, please visit
|
||||||
|
Loading…
Reference in New Issue
Block a user