写一个文字滑动切换样式效果

发布时间:2024年01月13日

?

<template>
    <div class="mainrouter centerWindi">
        <h1>2024,马上暴富</h1>
    </div>
</template>
<style lang="scss">
/* 居中 */
.centerWindi {
    @apply flex justify-center items-center;
    text-align: center;
}

/* 路由 */
.mainrouter {
    background-color: white;
    width: 100%;
    height: 150%;
    border-radius: 4px;
    padding: 25px;
}

h1 {
    //color:coral;
    font-size: 80px;
    font-weight: 700;
    //设置透明度
    background: linear-gradient(to bottom, coral 50%, white 50%)
    // 背景居中显示,背景大小为100%,固定背景
    center center / 100vw 100vh fixed;
    // height: 100vh;
    width: 100%;
    // 背景只覆盖文字
    background-clip: text;
    -webkit-background-clip: text;
    // 将背景色换位透明
    color:transparent;
    // 设置描边
    -webkit-text-stroke: 2px coral;
}
</style>

文章来源:https://blog.csdn.net/m0_58235310/article/details/135570448
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。