简体中文
margin-top CSS 属性用于设置元素的顶部外边距外边距区域。正值使它离相邻元素更远,而负值使它更靠近相邻元素。
| Web | Android | iOS | HarmonyOS | HarmonyOS(Vapor) |
|---|---|---|---|---|
| 4.0 | 3.9 | 4.11 | 4.61 | 5.0 |
margin-top: <length> | <percentage> | auto;
| 名称 | 兼容性 | 描述 |
|---|---|---|
| auto | 浏览器选择一个合适的值来使用。参见 margin。 |
0
注意
示例为hello uni-app x alpha分支,与最新HBuilderX Alpha版同步。与最新正式版同步的master分支示例另见
示例
<template>
<!-- #ifdef APP -->
<scroll-view style="flex: 1">
<!-- #endif -->
<view style="flex-grow: 1;">
<text class="uni-tips">说明:左边是正常版本,右边是拍平版本</text>
<view>
<text>margin-top: 25px</text>
<view class="demo-box">
<view class="demo-container">
<view class="common red"></view>
<view class="common" style="margin-top: 25px;"></view>
<view class="common blue"></view>
</view>
<view class="demo-container">
<view class="common red"></view>
<view class="common" style="margin-top: 25px;" flatten></view>
<view class="common blue"></view>
</view>
</view>
</view>
<view>
<text>margin-top: 10%</text>
<view class="demo-box">
<view class="demo-container">
<view class="common red"></view>
<view class="common" style="margin-top: 10%;"></view>
<view class="common blue"></view>
</view>
<view class="demo-container">
<view class="common red"></view>
<view class="common" style="margin-top: 10%;" flatten></view>
<view class="common blue"></view>
</view>
</view>
</view>
<view class="uni-common-mt">
<text class="uni-title-text">setProperty 设置与 getPropertyValue 获取 margin-top </text>
</view>
<view class="test-container">
<view class="test-item">
<text class="uni-subtitle-text">view 组件</text>
<text class="uni-info">设置值: {{marginTop}}</text>
<text class="uni-info">获取值: {{marginTopActual}}</text>
<view class="test-box">
<view class="common-view" style="background-color: red;"></view>
<view ref="viewRef" class="common-view test-view" :style="{ marginTop: marginTop }">
<text class="common-text">view</text>
</view>
<view class="common-view" style="background-color: blue;"></view>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">text 组件</text>
<text class="uni-info">设置值: {{marginTop}}</text>
<text class="uni-info">获取值: {{marginTopActualText}}</text>
<view class="test-box">
<text class="common-view common-text" style="background-color: red;">红色</text>
<text ref="textRef" class="common-view common-text test-text" :style="{ marginTop: marginTop }">text</text>
<text class="common-view common-text" style="background-color: blue;">蓝色</text>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">image 组件</text>
<text class="uni-info">设置值: {{marginTop}}</text>
<text class="uni-info">获取值: {{marginTopActualImage}}</text>
<view class="test-box">
<image class="common-image" style="background-color: red;" src="/static/test-image/logo.png"></image>
<image ref="imageRef" class="common-image test-image" :style="{ marginTop: marginTop }" src="/static/test-image/logo.png"></image>
<image class="common-image" style="background-color: blue;" src="/static/test-image/logo.png"></image>
</view>
</view>
</view>
<view class="test-container">
<view class="test-item">
<text class="uni-subtitle-text">view 组件拍平</text>
<text class="uni-info">设置值: {{marginTop}}</text>
<text class="uni-info">获取值: {{marginTopActualFlat}}</text>
<view class="test-box">
<view class="common-view" style="background-color: red;"></view>
<view ref="viewRefFlat" class="common-view test-view-flatten" :style="{ marginTop: marginTop }" flatten>
<text class="common-text">view</text>
</view>
<view class="common-view" style="background-color: blue;"></view>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">text 组件拍平</text>
<text class="uni-info">设置值: {{marginTop}}</text>
<text class="uni-info">获取值: {{marginTopActualTextFlat}}</text>
<view class="test-box">
<text class="common-view common-text" style="background-color: red;">红色</text>
<text ref="textRefFlat" class="common-view common-text test-text-flatten" :style="{ marginTop: marginTop }" flatten>text</text>
<text class="common-view common-text" style="background-color: blue;">蓝色</text>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">image 组件拍平</text>
<text class="uni-info">设置值: {{marginTop}}</text>
<text class="uni-info">获取值: {{marginTopActualImageFlat}}</text>
<view class="test-box">
<image class="common-image" style="background-color: red;" src="/static/test-image/logo.png"></image>
<image ref="imageRefFlat" class="common-image test-image-flatten" :style="{ marginTop: marginTop }" flatten src="/static/test-image/logo.png"></image>
<image class="common-image" style="background-color: blue;" src="/static/test-image/logo.png"></image>
</view>
</view>
</view>
<view class="uni-common-mt uni-common-mb">
<text class="uni-tips">第一个枚举值,'' (空字符串) - 空值情况</text>
<enum-data :items="marginTopEnum" title="margin-top 枚举值" @change="radioChangeMarginTop" :compact="true"></enum-data>
<input-data :defaultValue="marginTop" title="margin-top 自定义值" type="text" @confirm="inputChangeMarginTop"></input-data>
</view>
</view>
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</template>
<script setup lang="uts">
import { ItemType } from '@/components/enum-data/enum-data-types'
const marginTop = ref('25px')
const marginTopActual = ref('')
const marginTopActualText = ref('')
const marginTopActualImage = ref('')
const marginTopActualFlat = ref('')
const marginTopActualTextFlat = ref('')
const marginTopActualImageFlat = ref('')
const viewRef = ref(null as UniElement | null)
const textRef = ref(null as UniTextElement | null)
const imageRef = ref(null as UniImageElement | null)
const viewRefFlat = ref(null as UniElement | null)
const textRefFlat = ref(null as UniTextElement | null)
const imageRefFlat = ref(null as UniImageElement | null)
const marginTopEnum: ItemType[] = [
{ value: 0, name: '' },
{ value: 1, name: '0' },
{ value: 2, name: '0px' },
{ value: 3, name: '20px' },
{ value: 4, name: '0%' },
{ value: 5, name: '10%' },
{ value: 6, name: 'auto' }
]
const getPropertyValues = () => {
marginTopActual.value = viewRef.value?.style.getPropertyValue('margin-top') ?? ''
marginTopActualFlat.value = viewRefFlat.value?.style.getPropertyValue('margin-top') ?? ''
marginTopActualText.value = textRef.value?.style.getPropertyValue('margin-top') ?? ''
marginTopActualTextFlat.value = textRefFlat.value?.style.getPropertyValue('margin-top') ?? ''
marginTopActualImage.value = imageRef.value?.style.getPropertyValue('margin-top') ?? ''
marginTopActualImageFlat.value = imageRefFlat.value?.style.getPropertyValue('margin-top') ?? ''
}
const changeMarginTop = (value: string) => {
marginTop.value = value
viewRef.value?.style.setProperty('margin-top', value)
viewRefFlat.value?.style.setProperty('margin-top', value)
textRef.value?.style.setProperty('margin-top', value)
textRefFlat.value?.style.setProperty('margin-top', value)
imageRef.value?.style.setProperty('margin-top', value)
imageRefFlat.value?.style.setProperty('margin-top', value)
// 使用 nextTick 确保样式已应用后再获取值
nextTick(() => {
getPropertyValues()
})
}
const radioChangeMarginTop = (index: number) => {
const selectedItem = marginTopEnum.find((item): boolean => item.value === index)
if (selectedItem != null) {
changeMarginTop(selectedItem.name)
}
}
const inputChangeMarginTop = (value: string) => {
changeMarginTop(value)
}
onReady(() => {
getPropertyValues()
})
defineExpose({
radioChangeMarginTop
})
</script>
<style>
.demo-container {
flex:1;
margin:0 10px;
height: 220px;
background-color: gray;
}
.demo-box {
flex-direction: row;
margin-top: 10px;
justify-content: space-around;
}
.common {
height: 50px;
background-color: green;
}
.red {
background-color: red;
}
.blue {
background-color: blue;
}
.common-view {
height: 30px;
background-color: green;
}
.common-text {
font-size: 12px;
color: white;
}
.common-image {
width: 30px;
height: 30px;
background-color: green;
}
.test-container {
flex-direction: row;
justify-content: space-between;
margin-top: 10px;
}
.test-item {
flex: 1;
margin: 0 5px;
}
.test-box {
width: 100%;
height: 140px;
background-color: gray;
}
</style>