如何使用 vue transition 实现 ios 按钮一样的平滑切换效果

图片描述

代码部分

<template>
    <div class="register__user-wrapper font-size-default border-box relative">
    /* register__user-active 表示当前页面激活的 a 标签 */
        <a class="register__user register__user-active absolute" id="register__personal-user">个人用户</a>
        <a class="register__user absolute right-0" id="register__enterprise-user">企业用户</a>
     </div>
</template>
<style>
.register__user-wrapper {
    width: 100%;
    height: 57px;
    margin-bottom: 31px;
    border-radius: 8px;
    padding: 3px;
    background-color: #ededed;
 }
  .register__user {
    width: 212px;
    height: 51px;
    line-height: 51px;
    border-radius: 8px;
    text-align: center;
    background-color: transparent;
    color: #4c4c4c;
 }
  .register__user-active {
    background-color: #fff;
    cursor: pointer;
 }
</style>
阅读 3.6k
1 个回答

已经自己解决了。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题