渐变色

32 阅读1分钟

WeChatdcc787e09c4b0cf3c6bf2fb13f14d684.png

Style

<template>
  <div>
    随时随地
  </div>
</template>
<style scoped>
  div {
    font-size: 64px;
    font-weight: bold;
    display: inline-block;
    background-image: linear-gradient(238deg, rgba(50, 226, 226, 1),rgba(12, 153, 255, 1),rgba(0, 123, 255, 1),rgba(145, 109, 220, 1),rgba(255, 134, 123, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
</style>