2024-02-19 16:40:19 +08:00

39 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<route lang="json5">
{
layout: 'demo',
style: { navigationBarTitleText: '图片压缩' },
}
</route>
<script setup lang="ts">
import testBgImg from './test-bg.png'
</script>
<template>
<view class="m-4 text-center">
<view class="mb-2 text-orange-500">
原始图片是一个很大的2.5Mbuild之后生成的图片只有1.1M体积下降 56%
</view>
<!-- #ifdef MP -->
<image
src="https://cip-shopping-page-0eysug01066a9e-1302818703.tcloudbaseapp.com/fly/img-min/bg-1.png"
mode="scaleToFill"
/>
<!-- #endif -->
<!-- #ifndef MP -->
<image :src="testBgImg" mode="scaleToFill" />
<!-- #endif -->
<view class="mb-4">对比图如下2图如果看不清请看代码原图</view>
<image
src="https://cip-shopping-page-0eysug01066a9e-1302818703.tcloudbaseapp.com/fly/img-min/before.png"
mode="widthFix"
class="w-full"
/>
<image
src="https://cip-shopping-page-0eysug01066a9e-1302818703.tcloudbaseapp.com/fly/img-min/after.png"
mode="widthFix"
class="w-full"
/>
</view>
</template>