博客列表 >css的太极图

css的太极图

P粉175454374
P粉175454374原创
2022年05月10日 16:42:37461浏览

···html
<!doctype html>

<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.zuiwai{
width:800px;
height: 800px;
border:1px solid black;
margin:0 auto;
border-radius:50%;

  1. background:linear-gradient(to right,#000000 0%,#000000 50%,#FFFFFF 51%,#FFFFFF 100%);
  2. animation: zhuan 10s linear infinite;
  3. }
  4. .li1,.li2{
  5. border:1px solid rgba(0,0,0,0);
  6. width: 399px;
  7. height: 399px;
  8. border-radius: 50%;
  9. margin-left:211px;
  10. }
  11. .li1{
  12. transform: rotate(-46deg);
  13. background-color: white;
  14. }
  15. .li2{
  16. transform: rotate(-46deg);
  17. background-color: black;
  18. }
  19. .nei1,.nei2{
  20. width: 199px;
  21. height: 199px;
  22. border-radius: 50%;
  23. border:1px solid black;
  24. margin-left:90px;
  25. margin-top:90px;
  26. }
  27. .nei1{
  28. background-color: #262626;
  29. }
  30. .nei2{
  31. background-color: white;
  32. }
  33. @keyframes zhuan {
  34. 50%{
  35. transform: rotate(180deg);
  36. }
  37. 100%{
  38. transform: rotate(360deg);
  39. }
  40. }
  41. </style>

</head>

<body>

<div class="zuiwai">
<div class="li1">
<div class="nei1"></div>
</div>

  1. <div class="li2">
  2. <div class="nei2"></div>
  3. </div>

</div>
</body>
</html>
···html

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议