9.8 lpt浏览器图标修改
Showing
3 changed files
with
32 additions
and
18 deletions
| ... | @@ -6,8 +6,8 @@ | ... | @@ -6,8 +6,8 @@ |
| 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| 7 | <meta name="renderer" content="webkit"> | 7 | <meta name="renderer" content="webkit"> |
| 8 | <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | 8 | <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> |
| 9 | <link rel="icon" href="/favicon.ico"> | 9 | <link rel="icon" href="/bitbug_favicon.ico"> |
| 10 | <title>lpt</title> | 10 | <title>LPT</title> |
| 11 | <!-- <script src="./browser.js"></script>--> | 11 | <!-- <script src="./browser.js"></script>--> |
| 12 | <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]--> | 12 | <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]--> |
| 13 | 13 | ... | ... |
public/bitbug_favicon.ico
0 → 100644
No preview for this file type
| ... | @@ -124,27 +124,41 @@ | ... | @@ -124,27 +124,41 @@ |
| 124 | </div> | 124 | </div> |
| 125 | <el-card style="background: transparent; border: none"> | 125 | <el-card style="background: transparent; border: none"> |
| 126 | <el-row> | 126 | <el-row> |
| 127 | <el-col :lg="12"> | 127 | <div v-if="livelist.length>4"> |
| 128 | <a class="liveImgbox" @click="goDetail(livelist[0])"> | 128 | <el-col :lg="12"> |
| 129 | <div class="imgBox" style="min-height: 200px"> | 129 | <a class="liveImgbox" @click="goDetail(livelist[0])"> |
| 130 | <img v-if="livelist[0]" style="aspect-ratio: 1/1" :src="fillImgUrl(livelist[0].picUrl)"> | 130 | <div class="imgBox" style="min-height: 200px"> |
| 131 | </div> | 131 | <img v-if="livelist[0]" style="aspect-ratio: 1/1" :src="fillImgUrl(livelist[0].picUrl)"> |
| 132 | <h3 class="esp"> | 132 | </div> |
| 133 | {{ livelist[0]?.name }} | 133 | <h3 class="esp"> |
| 134 | </h3> | 134 | {{ livelist[0]?.name }} |
| 135 | </a> | 135 | </h3> |
| 136 | </el-col> | 136 | </a> |
| 137 | <el-col :lg="12"> | 137 | </el-col> |
| 138 | <el-row class="news-l-r"> | 138 | <el-col :lg="12"> |
| 139 | <el-col v-for="(n,index) in livelist.slice(0,5)" v-show="index>0" :lg="12"> | 139 | <el-row class="news-l-r"> |
| 140 | <div class="item" style="padding: 0;margin:0 0 20px" @click="goDetail(n)"> | 140 | <el-col v-for="(n,index) in livelist.slice(0,5)" v-show="index>0" :lg="12"> |
| 141 | <div class="item" style="padding: 0;margin:0 0 20px" @click="goDetail(n)"> | ||
| 142 | <div class="imgbox"> | ||
| 143 | <i class="playIcon"></i> | ||
| 144 | <img v-if="n" style="aspect-ratio: 1/1;height: auto" :src="fillImgUrl(n.picUrl)"></div> | ||
| 145 | </div> | ||
| 146 | </el-col> | ||
| 147 | </el-row> | ||
| 148 | </el-col> | ||
| 149 | </div> | ||
| 150 | <div v-else> | ||
| 151 | <el-row> | ||
| 152 | <el-col v-for="(n,index) in livelist" :lg="6"> | ||
| 153 | <div class="item" style="padding: 0;margin:0 20px 20px" @click="goDetail(n)"> | ||
| 141 | <div class="imgbox"> | 154 | <div class="imgbox"> |
| 142 | <i class="playIcon"></i> | 155 | <i class="playIcon"></i> |
| 143 | <img v-if="n" style="aspect-ratio: 1/1;height: auto" :src="fillImgUrl(n.picUrl)"></div> | 156 | <img v-if="n" style="aspect-ratio: 3/2;height: auto" :src="fillImgUrl(n.picUrl)"></div> |
| 144 | </div> | 157 | </div> |
| 145 | </el-col> | 158 | </el-col> |
| 146 | </el-row> | 159 | </el-row> |
| 147 | </el-col> | 160 | </div> |
| 161 | |||
| 148 | </el-row> | 162 | </el-row> |
| 149 | </el-card> | 163 | </el-card> |
| 150 | </div> | 164 | </div> | ... | ... |
-
Please register or sign in to post a comment