vue实现马蜂窝悬停动画效果

代码语言:html

所属分类:悬停

代码描述:vue实现马蜂窝悬停动画效果

代码标签: 悬停 动画 效果

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

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
.hexo-map {
  --color-base: #a4a4a6;
  --color-active: #f5cc23;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 10vw;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  mix-blend-mode: overlay;
  overflow: hidden;
}

.hexo {
  -webkit-box-flex: 0;
          flex: none;
  background-size: cover;
  width: 1em;
  height: 1em;
  display: -webkit-box;
  display: flex;
  position: relative;
  cursor: default;
  margin-bottom: -.1.........完整代码请登录后点击上方下载按钮下载查看

网友评论0