基于jQuery制作小图标上下滑动特效

网络编程 2021-07-04 19:20www.168986.cn编程入门
一个小图标特效,非常有趣的,狼蚁网站SEO优化给大家分享基于jquery制作的小图标上下滑动特效,代码简单易懂,需要的朋友参考下

一个小图标特效,挺有趣的,代码也很容易懂。

 jQ小图标上下滑动特效

代码如下

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title></title>
  </head>
  <link rel="stylesheet" href="css/normalize.css">
  <style>
   .tubiao{
    width: 300px;
    height: 100px;
    margin: 100px auto;
   }
   a{
    position: relative;
    padding: 10px;
    display: inline-block;
    text-decoration: none;
    color: #000;
    text-align: center;
   }
   i{
    position: absolute;
    left: 5px;
    : -20px;
    opacity: 1;
   }
  </style>
  <body>
    <div class="tubiao">
      <a href="#"><i><img src="imges/小图标/1.png" alt="1" ></i><p>我的</p></a>
      <a href="#"><i><img src="imges/小图标/2.png" alt="2" ></i><p>你的</p></a>
      <a href="#"><i><img src="imges/小图标/3.png" alt="3" ></i><p>他的</p></a>
      <a href="#"><i><img src="imges/小图标/4.png" alt="4" ></i><p>好的</p></a>
      <a href="#"><i><img src="imges/小图标/5.png" alt="5" ></i><p>坏的</p></a>
    </div>/css和html不解释/
    <script src="js库/jquery.js"></script>/jquery库,路径这里用汉字,我是看的方便,实际建议用英文/
    <script>
      $(function(){
        $("a").mouseenter(function(){<br>                /mouseenter和mouseover 都是 触摸事件,前者是不冒泡,后者必然冒泡,解释还是有点差强人意,前者也会发生不一样的情况,就是超出子元素范围,点在祖先元素还是会发生/
          $(this).find("i").s().animate({:"-30px",opacity:"0"},300,function(){ <br>                   /这里关键说一个,就是在anmiate()前面加s(),是取消上一次事件,再继续,接下来的/
            $(this).css({:"-15px"});<br>                        /这里是出现的关键,就是因为opacity是0嘛,我们就先悄悄的把值,移到正常位置的狼蚁网站SEO优化一点点,然后再让他出现,即产生了绕了180deg的错觉/
            $(this).animate({:"-20px",opacity:"1"},300)
          });
        })
      })
    </script>
  </body>
</html>

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by