CSS 飞舞线条加载中效果

发布时间:2024年01月18日

<template>
	<view class="page">
		<view class="container">
			<view class="ring"></view>
			<view class="ring"></view>
			<view class="ring"></view>
			<view class="ring"></view>
			<view class="h3">加载中...</view>
		</view>
	</view>
</template>

<script>
</script>

<style>
	body {
		background-color: #212121;
		/* 设置背景颜色为深灰色 */
	}

	.page {
		display: flex;
		/* 使用弹性布局 */
		justify-content: center;
		/* 水平居中对齐 */
		align-items: center;
		/* 垂直居中对齐 */
		margin-top: 300px;
		/* 顶部外边距为300像素 */
	}

	.container {
		display: flex;
		/* 使用弹性布局 */
		justify-content: center;
		/* 水平居中对齐 */
		align-items: center;
		/* 垂直居中对齐 */
		position: relative;
		/* 
文章来源:https://blog.csdn.net/weixin_54226053/article/details/135661505
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。