background-image.uvue 339 字节
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<template>
	<view style="flex-grow: 1;">
		<view>
			<text>background-image: linear-gradient(to right, red, yellow)</text>
			<view class="common" style="background-image: linear-gradient(to right, red, yellow);"></view>
		</view>
	</view>
</template>

<script>

</script>

<style>
	.common {
		width: 500rpx;
		height: 500rpx;
	}
</style>