您的位置:首页 > 游戏 > 游戏 > css实现太极图

css实现太极图

2024/10/6 14:27:53 来源:https://blog.csdn.net/yinge0508/article/details/141154824  浏览:    关键词:css实现太极图

<template><div><!-- 太极图 --><div class="all"><div class="left box"></div><div class="right box"></div><div class="black"><div class="inner_white"></div></div><div class="white"><div class="inner_black"></div></div></div></div>
</template>
<script>
export default {data() {return {};},watch: {},created() {},methods: {},
};
</script>
<style lang='less' scoped>
.all{border:5px solid black;border-radius: 50%;width: 300px;height: 300px;margin:0 auto;margin-top:15%;overflow: hidden;display: flex;position: relative;animation: action 5s linear infinite;.box{width: 50%;height: 100%;}.left{background: #fff;}.right{background: #000;}.black{background: #000;width: 145px;height: 145px;border-radius: 50%;box-sizing: border-box;position: absolute;left:50%;margin-left: -75px;display: flex;align-items: center;justify-content: center;.inner_white{width: 30px;height: 30px;border-radius: 50%;background: #fff;}}.white{background: #fff;width: 145px;height: 145px;border-radius: 50%;box-sizing: border-box;position: absolute;left:50%;bottom:0;margin-left: -75px;display: flex;align-items: center;justify-content: center;.inner_black{width: 30px;height: 30px;border-radius: 50%;background: #000;}}
}@keyframes action {0%{transform: rotate(0);}25%{transform: rotate(-90deg);}50%{transform: rotate(-180deg);}75%{transform: rotate(-270deg);}100%{transform: rotate(-360deg);}
}
</style>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com