js原生动效

需求效果如下,鼠标移入图片向周围扩散,移入中间图浮现心形渐变框,注意点在中间图周围和整体的四个边的图片需要注意扩散的方向。由于一些客观原因,要求使用原生js实现,好久不写了记录一下

Screen-2022-03-23-140818.gif
<!DOCTYPE html>
<html lang="en" dir="ltr">

<head>
  <meta charset="utf-8">
  <title></title>
  <style>
    * {
      margin: 0;
      padding: 0;
    }
    
    .duty_box {
      width: 1184px;
      height: 508px;
      margin: 0 auto;
      background-color: yellowgreen;
      font-size: 0;
      position: relative;
    }
    
    .duty_box_img {
      width: 104px;
      height: 60px;
      position: absolute;
      z-index: 0;
    }
    
    .duty_box_div_con {
      width: 104px;
      height: 60px;
      position: relative;
    }
    
    .duty_box_div_con>img {
      width: 100%;
      height: 100%;
    }
    
    .duty_box_div_con_shadow::after {
      position: absolute;
      content: ' ';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      animation: dutyBoxDivConShadow .5s ease-in-out 0s forwards;
    }
    
    @keyframes dutyBoxDivConShadow {
      0% {
        background: rgba(212, 0, 0, .1);
      }
      100% {
        background: rgba(212, 0, 0, .7);
      }
    }
    
    .duty_box_img_zoom1 {
      animation: dutyBoxImgZoom1 .2s ease-in-out 0s forwards;
      z-index: 1;
    }
    
    @keyframes dutyBoxImgZoom1 {
      0% {
        transform: scale(1);
      }
      100% {
        transform: scale(3.08, 3.11);
      }
    }
    /* 中间 */
    
    .duty_box_midImg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 320px;
      height: 124px;
    }
  </style>
</head>

<body>
  <div class="duty_box">
    <img class="duty_box_midImg" src="https://img1.baidu.com/it/u=4127991555,3421789262&fm=253&fmt=auto&app=138&f=JPEG?w=680&h=454" alt="">
  </div>
</body>

</html>
<script>
  var duty_box = document.querySelector('.duty_box');
  for (let i = 0; i < 11; i++) {
    for (let j = 0; j < 8; j++) {
      if ((3 < i && i < 7) && (2 < j && j < 5)) {
        continue;
      }
      let duty_box_img = document.createElement('div');
      let duty_box_div_con = document.createElement('div');
      duty_box_img.classList.add('duty_box_img');
      duty_box_img._x = i;
      duty_box_img._y = j;
      duty_box_img.style.left = i * 108 + 'px';
      duty_box_img.style.top = j * 64 + 'px';
      duty_box_div_con.classList.add('duty_box_div_con');
      let img = document.createElement("img");
      img.src = 'https://img1.baidu.com/it/u=4127991555,3421789262&fm=253&fmt=auto&app=138&f=JPEG?w=680&h=454';


      duty_box_div_con.appendChild(img)
      duty_box_img.appendChild(duty_box_div_con)
      duty_box.appendChild(duty_box_img)
    }
  }

  var imgList = document.querySelectorAll('.duty_box_img');
  for (let i = 0; i < imgList.length; i++) {
    imgList[i].onmouseover = function() {
      let x = this._x,
        y = this._y;

      if ([0, 10].includes(x) && [0, 7].includes(y)) {
        this.style.transformOrigin = x / 10 * 100 + '% ' + y / 7 * 100 + '%';
      } else if ([1, 2, 3, 4, 5, 6, 7, 8, 9].includes(x) && [0, 7].includes(y) || [0, 10].includes(x) && [1, 2, 3, 4, 5, 6].includes(y)) {
        if (x == 0) this.style.transformOrigin = '0 50%';
        else if (x == 10) this.style.transformOrigin = '100% 50%';
        else if (y == 0) this.style.transformOrigin = '50% 0';
        else if (y == 7) this.style.transformOrigin = '50% 100%';
      } else if ([3, 7].includes(x) && [2, 5].includes(y)) {
        if (x == 3 && y == 2) this.style.transformOrigin = '100% 100%';
        else if (x == 7 && y == 2) this.style.transformOrigin = '0 100%';
        else if (y == 5 && x == 3) this.style.transformOrigin = '100% 0';
        else if (y == 5 && x == 7) this.style.transformOrigin = '0 0';
      } else if ([4, 5, 6].includes(x) && [2, 5].includes(y) || [3, 7].includes(x) && [3, 4].includes(y)) {
        if (x == 7) this.style.transformOrigin = '0 50%';
        else if (x == 3) this.style.transformOrigin = '100% 50%';
        else if (y == 2) this.style.transformOrigin = '50% 100%';
        else if (y == 5) this.style.transformOrigin = '50% 0';
      } 
       this.classList.add('duty_box_img_zoom1');
    }
    imgList[i].onmouseout = function() {
      this.classList.remove('duty_box_img_zoom1')
    }
  }


  var duty_box_midImg = document.querySelector('.duty_box_midImg');
  duty_box_midImg.onmouseover = function() {
    console.log('11');
    for (let i = 0; i < imgList.length; i++) {
      let x = imgList[i]._x,
        y = imgList[i]._y;

      switch (x) {
        case 2:
        case 8:
          if ([1, 2, 3, 4].includes(y)) {
            imgList[i].querySelector('.duty_box_div_con').classList.add('duty_box_div_con_shadow')
          }
          break;
        case 3:
        case 7:
          if ([0, 1, 2, 3, 4, 5].includes(y)) {
            imgList[i].querySelector('.duty_box_div_con').classList.add('duty_box_div_con_shadow')
          }
          break;
        case 4:
        case 6:
          if ([0, 1, 2, 5, 6].includes(y)) {
            imgList[i].querySelector('.duty_box_div_con').classList.add('duty_box_div_con_shadow')
          }
          break;
        case 5:
          if ([1, 2, 5, 6, 7].includes(y)) {
            imgList[i].querySelector('.duty_box_div_con').classList.add('duty_box_div_con_shadow')
          }
          break;
        default:
          break;
      }
    }
  }

  duty_box_midImg.onmouseout = function() {
    var duty_box_div_con_shadow = document.querySelectorAll('.duty_box_div_con_shadow');
    for (let index = 0; index < duty_box_div_con_shadow.length; index++) {
      duty_box_div_con_shadow[index].classList.remove('duty_box_div_con_shadow')

    }
  }
</script>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 199,478评论 5 467
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 83,825评论 2 376
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 146,482评论 0 330
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 53,726评论 1 271
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 62,633评论 5 359
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,018评论 1 275
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,513评论 3 390
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,168评论 0 254
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,320评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,264评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,288评论 1 328
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,995评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,587评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,667评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,909评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,284评论 2 345
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 41,862评论 2 339

推荐阅读更多精彩内容

  • 83个js原生代码实例,从易到难,涵盖js算法和几乎开发中用到的知识点(实时更新中) 实例中也包括了很多布局例如:...
    金华每文阅读 10,642评论 1 21
  • 十二、JavaScript的DOM特效 在web浏览器上,window对象是一个全局对象,代表web浏览器中一个打...
    刘远舟阅读 364评论 0 1
  • 这是前阵子写的2款原生JS轮播,一个是渐变轮播预览,一个是滚动轮播预览,现在补充博文总结。 渐变轮播 因为是梳理自...
    妙言Lisa阅读 938评论 2 7
  • 1.ios高性能编程 (1).内层 最小的内层平均值和峰值(2).耗电量 高效的算法和数据结构(3).初始化时...
    欧辰_OSR阅读 29,276评论 8 265
  • ECharts的快速上手 ECharts 的入门使用特别简单, 5分钟就能够上手. 他大体分为这几个步骤 步骤1:...
    东邪_黄药师阅读 809评论 0 4