markdown 甜甜圈旋转器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 甜甜圈旋转器相关的知识,希望对你有一定的参考价值。

## HTML
```HTML
<div class="donut"></div>
```

## CSS
```CSS
@keyframes donut-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.donut {
  display: inline-block;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #7983ff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: donut-spin 1.2s linear infinite;
}
```

## Explanation
```Text
Use a semi-transparent border for the whole element, except one side that will serve as the loading indicator for the donut. Use animation to rotate the element.
```

以上是关于markdown 甜甜圈旋转器的主要内容,如果未能解决你的问题,请参考以下文章

46 行 Python 代码,做一个会旋转的三维甜甜圈!

46 行 Python 代码,做一个会旋转的三维甜甜圈!

html [Donut spinner]创建一个甜甜圈微调器,可用于指示内容的加载。 #CSS

没有内馅饼的Highcharts甜甜圈图?

蓝桥ROS机器人之C++系列奇妙甜甜圈

Flot - 甜甜圈饼图 - 自定义图例