您的位置:首页技术文章
文章详情页

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

浏览:67日期:2023-06-27 13:55:43

问题描述

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

代码部分

<template> <p class='register__user-wrapper font-size-default border-box relative'> /* register__user-active 表示当前页面激活的 a 标签 */<a id='register__personal-user'>个人用户</a><a id='register__enterprise-user'>企业用户</a> </p></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>

问题解答

回答1:

已经自己解决了。

标签: CSS
相关文章: