Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
syui committed Apr 1, 2024
1 parent 78fa570 commit 3a88ff8
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<template>

<div id="app">
{{ loc }}
<hooper :settings="hooperSettings">
<slide v-for="(n,index) of products" :key="n">
<div v-if="loading" class="loading">
<i class="fa-solid fa-spinner fa-spin-pulse"></i>
</div>
<img :src="url + 'manga/'+ (index) +'.webp'" @load="load" />
<div class="page_n">{{ n }}</div>
<div class="page_n"><a href="/"><span class="icon-ai"></span></a> {{ n }}</div>
</slide>
<hooper-navigation slot="hooper-addons"></hooper-navigation>
<hooper-pagination slot="hooper-addons"></hooper-pagination>
Expand All @@ -30,9 +28,8 @@
<table>
<thead>
<tr>
<th scope="col"></th>
<th scope="col">n</th>
<th scope="col">body</th>
<th scope="col">yui</th>
<th scope="col">巻</th>
</tr>
</thead>
<tbody>
Expand All @@ -41,7 +38,6 @@
<a :href="this.url + this.s_a"><img :src="url + 'manga/' + this.s_a + '.webp'" v-on:click="page_run(s_a)"></a>
</th>
<td>0</td>
<td>アイがガララ星に移り住んでからのお話</td>
</tr>
</tbody>
<tbody>
Expand All @@ -50,7 +46,6 @@
<a :href="this.url + this.s_b"><img :src="url + 'manga/' + this.s_b + '.webp'" v-on:click="page_run(s_a)"></a>
</th>
<td>1</td>
<td>テスト</td>
</tr>
</tbody>
</table>
Expand All @@ -74,7 +69,7 @@
<a href="https://yui.syui.ai"><img src="https://syui.ai/ai.png" v-on:click="page_run(s_a)"></a>
</th>
<td>yui</td>
<td>不思議な力を持った女の子の物語</td>
<td>不思議な力を持った女の子のお話</td>
<td>syui</td>
</tr>
</tbody>
Expand Down Expand Up @@ -143,6 +138,14 @@ body {
margin: 0px;
}
a {
text-decoration: none;
}
a span.icon-ai {
color: #fff700;
}
.page_n{text-align:center;height:50px}
.hooper-pagination{position:fixed}
.hooper-next,.hooper-prev{background-color:rgba(184,207,224,.24)}
Expand Down

0 comments on commit 3a88ff8

Please sign in to comment.