zoukankan      html  css  js  c++  java
  • 用伪元素完成箭头

    .g-arrows4:after {
      content: " ";
      display: inline-block;
      height: 10px;
       10px;
      border- 2px 2px 0 0;
      border-color: #c8c8cd;
      border-style: solid;
      -webkit-transform: matrix(.71, .71, .71, -.71, 0, 0);
      transform: matrix(.71, .71, .71, -.71, 0, 0);
      position: absolute;
      top: 39%;
      left: 62%;
      margin-top: -4px;
    }

    参考文章

    https://blog.csdn.net/weixin_42103959/article/details/81044389

    若想实现箭头向左  ---  transform: matrix(-.71, .71, .71, .71, 0, 0);

    若想实现箭头向上  ---  transform: matrix(.71, -.71, .71, .71, 0, 0);

    若想实现箭头向右  ---  transform: matrix(.71, .71, -.71, .71, 0, 0);

    若想实现箭头向下  ---  transform: matrix(.71, .71, .71, -.71, 0, 0);

  • 相关阅读:
    Tye exception
    DataSeeder
    angular
    认证Authentication
    MVC
    Ef Core
    工作单元
    VirtualFileSystem
    中间件
    日志
  • 原文地址:https://www.cnblogs.com/linm/p/12669176.html
Copyright © 2011-2022 走看看