- created favicons logo

This commit is contained in:
Paolo Arena
2019-01-09 00:31:16 +01:00
parent 95e54e7c01
commit 3613560c97
21 changed files with 9 additions and 807 deletions

View File

@@ -10,7 +10,7 @@
}
#sun {
animation: around 5s infinite;
animation: gravity 5s infinite;
}
@@ -23,26 +23,3 @@
}
}
@keyframes around {
0% {
cx: 20;
cy: 22;
}
20% {
cx: 25;
cy: 24;
}
50% {
cx: 40;
cy: 26;
}
80% {
cx: 55;
cy: 24;
}
100% {
cx: 60;
cy: 22;
}
}

View File

@@ -9,8 +9,10 @@ import { TimelineLite, Back } from 'gsap'
})
export default class Logo extends Vue {
svgclass: string = 'svgclass'
logoimg: string = ''
created() {
this.logoimg = 'statics/' + process.env.LOGO_REG
this.animate()
}
@@ -25,8 +27,4 @@ export default class Logo extends Vue {
}
public logoimg() {
return process.env.LOGO_REG
}
}

View File

@@ -1,6 +1,6 @@
<template>
<div id="logo">
<img id="logoimg" alt="FreePlanet" :src="`assets/${logoimg()}`">
<img id="logoimg" alt="FreePlanet" :src=logoimg>
</div>
</template>
<script lang="ts" src="./logo.ts">