当前位置:   article > 正文

wo-gradient-card是一款采用uniapp实现的透明辉光动画卡片

wo-gradient-card是一款采用uniapp实现的透明辉光动画卡片

采用uniapp-vue3实现,透明辉光动画卡片,卡片内容包含标签、标题、副标题、图片
支持H5、微信小程序(其他小程序未测试过,可自行尝试)
可用于参考学习

可到插件市场下载尝试: https://ext.dcloud.net.cn/plugin?id=16729

  • 使用示例
    请添加图片描述
<template>
	<view>
		<wo-gradient-card v-model:options="state.options"></wo-gradient-card>
	</view>
</template>

<script setup lang="ts">
	import { reactive } from 'vue';
	const state = reactive({
		options: [
			{
				tag: '最新',
				tagStyle: {
					bgColor: 'rgba(43, 164, 113, 0.1)',
					color: 'rgb(43, 164, 113)'
				},
				title: '最新卡片',
				subtitle: '2024/01/22 - 2025/01/22',
				img: 'https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/shuijiao.jpg',
				bgColor: 'radial-gradient(50% 50% at 50% 50%,rgba(8, 188, 47, 0.1) 0,rgba(242,78,30,0) 100%)'
			},
			{
				tag: '最火',
				tagStyle: {
					bgColor: 'rgba(239, 47, 47, 0.1)',
					color: 'rgb(239, 47, 47)'
				},
				title: '最热门卡片',
				subtitle: '2024/01/22 - 2025/01/22',
				img: 'https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/shuijiao.jpg',
				bgColor: 'radial-gradient(50% 50% at 50% 50%,rgba(242,78,30,.1) 0,rgba(242,78,30,0) 100%)'
			},
			{
				tag: '',
				tagStyle: {
					bgColor: '',
					color: ''
				},
				title: '普通卡片',
				subtitle: '2024/01/22 - 2025/01/22',
				img: 'https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/shuijiao.jpg',
				bgColor: 'radial-gradient(50% 50% at 50% 50%,rgba(57,112,227,.1) 0,rgba(57,112,227,0) 100%)'
			},
			{
				tag: '',
				tagStyle: {
					bgColor: '',
					color: ''
				},
				title: '无图卡片',
				subtitle: '2024/01/22 - 2025/01/22',
				img: '',
				bgColor: 'radial-gradient(50% 50% at 50% 50%,rgba(57,112,227,.1) 0,rgba(57,112,227,0) 100%)'
			}
		]
	})
</script>

<style scoped>
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/122117
推荐阅读
相关标签
  

闽ICP备14008679号