Risuai 0.6.3 first commit
This commit is contained in:
21
src/lib/ChatScreens/EmotionBox.svelte
Normal file
21
src/lib/ChatScreens/EmotionBox.svelte
Normal file
@@ -0,0 +1,21 @@
|
||||
<script>
|
||||
import { DataBase } from '../../ts/database';
|
||||
import { CharEmotion } from '../../ts/stores';
|
||||
import { getEmotion } from '../../ts/util';
|
||||
</script>
|
||||
|
||||
{#await getEmotion($DataBase,$CharEmotion, 'contain') then images}
|
||||
{#each images as image, i}
|
||||
<div style={image + `width:${(100 / images.length)}%;bottom:0;left:${100 / images.length * i}%`} class="h-full bg-center absolute" />
|
||||
|
||||
{/each}
|
||||
{/await}
|
||||
|
||||
<style>
|
||||
.h-full {
|
||||
height: 100%;
|
||||
}
|
||||
.bg-center {
|
||||
background-position: center;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user