CSS 滑动发光文字 动画

发布时间:2024年01月10日

    <template>
    	<view class="content">
    		<view class="faguang" data-text="Awesome">
    			<text class="actual-text">{
  {text}}</text>
    			<text aria-hidden="true" class="hover-text">{
  {text}}</text>
    		</view>
    	</view>
    </template>

    <script setup>
    	import {
    		ref
    	} from "vue"

    	const text = ref("我发光了")
    </script>

    <style>
    	body {
    	    background-color: black; /* 设置页面背景颜色为黑色 */
    	}
    	.content {
    	    display: flex;
    	    flex-direction: column;
    	    align-items: center;
    	    justify-content: center;
    	    margin-top: 300px; /* 顶部外边距为300像素,将内容垂直居中显示 */
    	}
    	.faguang {
文章来源:https://blog.csdn.net/weixin_54226053/article/details/135513665
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。