CSS - 使用 clip-path 轻松实现正六边形块状元素

简介: 如何使用CSS的`clip-path`属性来创建正六边形的块状元素。文章提供了详细的HTML和CSS代码示例,展示了如何实现六边形的布局和样式,并通过CSS动画增强了视觉效果。最终效果是一个包含文本的可交互的正六边形元素,当鼠标悬停时会改变颜色。

前言

之前有一次在网上找CSS特效,找到这个正六边形的,颇为有趣。了解到了CSS中 clip-path 属性,它可以设计出平时设计稿中比较难实现的几何图形。另外,UP也对该特效进行优化改进,然后分享给大家。

一、clip-path 说明

(1)clip-path 属性使用裁剪方式创建元素的可显示区域。区域内的部分显示,区域外的隐藏。可以指定一些特定形状。

二、示例代码

(1)/src/views/Example/RegularHexagon/index.vue

<template>
  <div class="index">
    <ul>
      <li>
        <div class="outer_regular_hexagon">
          <div class="inner_regular_hexagon">
            <span>你好世界!</span>
          </div>
        </div>
      </li>

      <li>
        <div class="outer_regular_hexagon">
          <div class="inner_regular_hexagon">

          </div>
        </div>
      </li>

      <li>
        <div class="outer_regular_hexagon">
          <div class="inner_regular_hexagon">

          </div>
        </div>
      </li>

      <li>
        <div class="outer_regular_hexagon">
          <div class="inner_regular_hexagon">

          </div>
        </div>
      </li>

      <li>
        <div class="outer_regular_hexagon">
          <div class="inner_regular_hexagon">

          </div>
        </div>
      </li>

      <li>
        <div class="outer_regular_hexagon">
          <div class="inner_regular_hexagon">

          </div>
        </div>
      </li>

      <li>
        <div class="outer_regular_hexagon">
          <div class="inner_regular_hexagon">

          </div>
        </div>
      </li>
    </ul>
  </div>
</template>

<style lang="less" scoped>
.index {
    
    
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  text-align: center;
  background-color: #fafafa;

  ul {
    
    
    display: flex;
    margin: auto;

    li {
    
    
      display: inline-block;
      position: relative;
      width: 90px;
      height: 152px;
      transition: 0.5s border-color;
      cursor: pointer;
      margin: 3px 28px;
      background-color: rgba(134, 134, 134, 0.8);

      &:before {
    
    
        content: "";
        position: absolute;
        z-index: 1;
        width: calc(100%);
        height: calc(100% + 0px);
        left: 0;
        top:0px;
        transform: rotate(61deg);
        background-color: rgba(92, 123, 224, 0.8);
      }

      &:after {
    
    
        content: "";
        position: absolute;
        z-index: 2;
        width: calc(100%);
        height: calc(100% + 0px);
        left: 0;
        top: 0;
        transform: rotate(-61deg);
        background-color: rgba(92, 123, 224, 0.8);
      }

      .outer_regular_hexagon {
    
    
        position: absolute;
        z-index: 99;
        width: 200%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
        background-color: rgba(92, 123, 224, 0.8);
        transition: all 0.8s ease-in-out;

        .inner_regular_hexagon {
    
    
          display: grid;
          align-items: center;
          position: absolute;
          width: calc(100% - 2px);
          height: calc(100% - 2px);
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          margin: auto;
          clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
          background-color: #fff;
          transition: all 0.3s ease-in-out;
          text-align: center;

          span {
    
    
            display: block;
            width: 97px;
            margin: auto;
            padding: 10px;
            font-size: 14px;
            transition: all 0.3s ease-in-out;
          }
        }
      }
    }

    li:nth-child(even) {
    
    
      margin-top: 80px;
    }

    li:hover {
    
    
      .outer_regular_hexagon {
    
    
        .inner_regular_hexagon {
    
    
          background-color: #5e7ce0;

          span {
    
    
            color: #fff;
          }
        }
      }
    }
  }
}
</style>

三、运行效果

目录
相关文章
|
4天前
|
前端开发 JavaScript
如何利用 CSS3 动画实现元素的淡入淡出效果?
在上述代码中,定义了一个名为 `fade-in` 的CSS类,其初始透明度为0,并设置了淡入的过渡效果。当通过JavaScript为元素添加 `active` 类时,元素的透明度变为1,实现淡入效果;当再次点击按钮移除 `active` 类时,元素又会逐渐淡出。通过这种方式,可以根据用户的操作灵活地控制元素的淡入淡出效果。
34 3
|
21天前
CSS_定位_网页布局总结_元素的显示与隐藏
CSS_定位_网页布局总结_元素的显示与隐藏
22 0
|
1月前
|
前端开发
css 块元素、行内元素、行内块元素相互转换
css 块元素、行内元素、行内块元素相互转换
84 0
|
3月前
|
前端开发 容器
最新CSS3定位元素
【8月更文挑战第28天】
29 5
|
3月前
|
存储 前端开发
为 HTML 元素指定 CSS 样式的方式
【8月更文挑战第24天】
73 0
|
3月前
|
前端开发
CSS动画新潮流:炫酷水波效果,让网页元素生动起来!
CSS动画新潮流:炫酷水波效果,让网页元素生动起来!
|
4月前
|
前端开发
学习css的clip-path属性
【7月更文挑战第1天】了解CSS `clip-path`属性,用于定义元素显示区域的裁剪形状,如圆形、椭圆、多边形、矩形及SVG路径。通过配合过渡和动画,可创建动态交互效果。例如,`clip-path: circle(radius at center);`用于创建圆形裁剪,`polygon`用于自定义多边形。还可以使用`path()`引用SVG路径数据。[资源推荐:bennettfeely.com/clippy/](https://bennettfeely.com/clippy/),提供交互式工具测试不同形状。
68 0
学习css的clip-path属性
|
4月前
|
前端开发 容器
CSS对行级元素的影响
【7月更文挑战第4天】CSS对行级元素的影响
36 2
|
4月前
|
前端开发
css实用技巧——绝对定位元素的水平垂直居中
css实用技巧——绝对定位元素的水平垂直居中
47 2
|
4月前
|
前端开发
前端 CSS 经典:元素倒影
前端 CSS 经典:元素倒影
25 1