提交 a332ecc5 编写于 作者: W wanganxp

补充css的0.5px示例

上级 f343bbce
<template> <template>
<scroll-view class="page"> <scroll-view class="page">
<view class="trace"> <view class="trace">
<view class="base reserve"> <view class="base reserve">
<text class="reserve-text">scaleX(0.6)</text> <text class="reserve-text">scaleX(0.6)</text>
...@@ -27,48 +27,60 @@ ...@@ -27,48 +27,60 @@
<text>scale(1.2,1.2)</text> <text>scale(1.2,1.2)</text>
<text>转变后位置</text> <text>转变后位置</text>
</view> </view>
</scroll-view>
<view class="base">
<text>通过scaleY(0.5)实现0.5px的线</text>
<view style="width: 150px; height: 1px; background-color: #000; transform: scaleY(0.5)"></view>
<!-- <view style="width: 750px; height: 1px; background-color: #ff0000; "></view> -->
</view>
</scroll-view>
</template> </template>
<script lang="uts"> <script lang="uts">
export default { export default {
data() { data() {
return { return {
} }
}, },
methods: { methods: {
}, },
} }
</script> </script>
<style> <style>
.page { .page {
flex: 1; flex: 1;
align-items: center; align-items: center;
} }
.trace {
.trace {
position: absolute; position: absolute;
top: 0px; top: 0px;
left: 0px; left: 0px;
width: 100%; width: 100%;
align-items: center; align-items: center;
} }
.base {
.base {
margin: 10px; margin: 10px;
width: 150px; width: 150px;
height: 150px; height: 150px;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.reserve {
.reserve {
border: 1px dotted #588; border: 1px dotted #588;
background-color: #DDD; background-color: #DDD;
} }
.reserve-text {
.reserve-text {
color: #CCC; color: #CCC;
} }
.transform {
.transform {
border: 1px solid #00F; border: 1px solid #00F;
background-color: rgba(0,255,255,0.5); background-color: rgba(0, 255, 255, 0.5);
} }
</style> </style>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册