div+css实现鼠标悬浮丝带折叠收缩动画效果代码

代码语言:html

所属分类:悬停

代码描述:div+css实现鼠标悬浮丝带折叠收缩动画效果代码

代码标签: div css 鼠标 悬浮 丝带 折叠 收缩 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
<style>
@property --a {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}

h1 {
  --r: 30px;  /* control the cutout of the ribbon */
  --a: 15deg; /* control the angle (only positive values) */
  --c: #d81a14;
  
  line-height: 1.6; /* this will control the height */
  padding-inline: .5lh; /* OR calc(tan(var(--a))*1.5lh) */
  color: #fff;
  background:
    line.........完整代码请登录后点击上方下载按钮下载查看

网友评论0