CSS transition between left -> right and top -> bottom positions

前端 未结 4 502
天涯浪人
天涯浪人 2020-12-08 09:01

Is it possible to use CSS transitions to animate something between a position set as left: 0px to right: 0px so it goes all the way across the scre

4条回答
  •  粉色の甜心
    2020-12-08 09:56

    In more modern browsers (including IE 10+) you can now use calc():

    .moveto {
      top: 0px;
      left: calc(100% - 50px);
    }
    

提交回复
热议问题