效果图

image.png
实现代码:
<template>
<div class="container">
<div class="slogan">你的轻舟在哪重山被迫搁浅</div>
</div>
</template>
<style>
.container {
width: 100%;
height: 100%;
background: #000000;
}
.slogan {
font-size: 50px;
font-weight: 800;
background: linear-gradient(91deg, #ffc078 -2.37%, #ff58bc 20.2%, #6287ff 96.19%, #83c5ff 114.91%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>