TickerBar component
This commit is contained in:
parent
2c9efb1df8
commit
7f67007a12
2 changed files with 64 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
</TitleBar>
|
</TitleBar>
|
||||||
<HelloWorld />
|
<HelloWorld />
|
||||||
</v-main>
|
</v-main>
|
||||||
|
<TickerBar :content="ticker_html" />
|
||||||
</v-app>
|
</v-app>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -13,15 +14,18 @@
|
||||||
import { Component, Vue } from "vue-property-decorator";
|
import { Component, Vue } from "vue-property-decorator";
|
||||||
import HelloWorld from "./components/HelloWorld.vue";
|
import HelloWorld from "./components/HelloWorld.vue";
|
||||||
import TitleBar from "./components/TitleBar.vue";
|
import TitleBar from "./components/TitleBar.vue";
|
||||||
|
import TickerBar from "./components/TickerBar.vue";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
components: {
|
components: {
|
||||||
HelloWorld,
|
HelloWorld,
|
||||||
TitleBar,
|
TitleBar,
|
||||||
|
TickerBar,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
export default class App extends Vue {
|
export default class App extends Vue {
|
||||||
private title_html = "<h1>changeme</h1>";
|
private title_html = "<h1>changeme</h1>";
|
||||||
|
private ticker_html = "<p>changeme</p>";
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
60
ui/src/components/TickerBar.vue
Normal file
60
ui/src/components/TickerBar.vue
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
<template>
|
||||||
|
<v-footer color="primary" dark>
|
||||||
|
<span
|
||||||
|
class="text-h6"
|
||||||
|
:style="{ 'animation-duration': marqueeDuration }"
|
||||||
|
ref="slotWrapper"
|
||||||
|
>
|
||||||
|
<div v-html="content" />
|
||||||
|
</span>
|
||||||
|
</v-footer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Component, Prop, Vue } from "vue-property-decorator";
|
||||||
|
|
||||||
|
@Component
|
||||||
|
export default class TickerBar extends Vue {
|
||||||
|
@Prop()
|
||||||
|
public content!: string;
|
||||||
|
|
||||||
|
get marqueeDuration(): string {
|
||||||
|
// 10 seconds + another second per 7 chars
|
||||||
|
let dv = this.content ? Math.round(this.content.length / 7) : 0;
|
||||||
|
return 10 + dv + "s";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@keyframes marquee {
|
||||||
|
0% {
|
||||||
|
transform: translate(0, 0);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translate(-100%, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-footer {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
> span {
|
||||||
|
display: inline-block;
|
||||||
|
padding-left: 100%;
|
||||||
|
text-indent: 0;
|
||||||
|
animation: marquee 30s linear infinite;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
animation-play-state: paused;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.v-footer p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in a new issue