17.旋转边框特效

效果 (源码网盘地址在最后)

关注公众号《大迁世界》,查看更多视频教程!

源码

index.html

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>CodePen - Rotating border</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="./style.css">

</head>
<body>
<div class="rainbow">

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

css

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

*, *::before, *::after {
  box-si

猜你喜欢

转载自blog.csdn.net/qq449245884/article/details/122748843
今日推荐