简单的一个盒子移动到另一个盒子,你用什么方式实现动画效果(面试题)

简单的一个盒子移动到另一个盒子,你用什么方式实现动画效果

方法一:使用HTML+CSS里面的transition过渡动画结合2d的位移translate设置
HTML部分
  <div class="box1"></div>
  <div class="box2"></div>
  <style>
      *{margin:0;padding:0}
      div{
          float: left;
      }
      .box1{
          width: 200px;
          height:200px;
          background-color: red;
      }
      .box2{
          width: 100px;
          height:100px;
          background-color: green;
          transition: all linear 1s;
      }
      .box1:hover+.box2{
          transform: translateX(-100px);
      }
  </style>
方法二:使用HTML5+CSS3中的animation动画属性结合2d里面的位移translate进行实
  HTML部分
  <div class="box1"></div>
  <div class="box2"></div>
  <style>
       *{margin:0;padding:0}
       div{
           float: left;
       }
       .box1{
           width: 200px;
           height:200px;
           background-color: red;
       }
       .box2{
           width: 100px;
           height:100px;
           background-color: green;
           animation: mover linear 1s;
       }
       @keyframes mover{
           0%{
               transform: translateX(0px);
           }
           100%{
               transform: translateX(-100px);
           }
       }
  </style>
方法三:复杂方法,可以使用js封装一个动画函数,直接使用鼠标移动移入事件或者点击事件触发移动
HTML部分
 <div class="box1"></div>
  <div class="box2"></div>
  <script>
  	//获取元素
      //设置x和y的值
      //绑定鼠标移入事件==缓慢移动  x的位置进行移动  自减
      //绑定鼠标移出事件==缓慢移动  x的位置进行移动  自增
  </script>
  <style>
      *{margin:0;padding:0}
      div{float:left}
      .box1{width:300px;height:300px;background-color:red}
      .box2{width:100px;height:100px;background-color:green}
  </style>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值