热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

text过渡运动反应路由器4路径转换

本文由编程笔记#小编为大家整理,主要介绍了text过渡运动反应路由器4路径转换相关的知识,希望对你有一定的参考价值。
本文由编程笔记#小编为大家整理,主要介绍了text 过渡运动反应路由器4路径转换相关的知识,希望对你有一定的参考价值。




const FadeRoute = ({ component: Component, ...rest }) => {
return (
(
willEnter={() => {return {opacity: 0, translateX: 24}}}
willLeave={() => {return {opacity: spring(0, animationPresets.out), translateX: spring(24)}}}
defaultStyles={[ {
key: location.pathname,
style: { opacity: 0, translateX: 24},
data: match
} ]}
styles={match ? [ {
key: location.pathname,
style: { opacity: spring(1, animationPresets.in), translateX: spring(0) },
data: match
} ] : []}
>
{interpolatedStyles => (


{interpolatedStyles.map(cOnfig=> (
className="page"
key={config.key}
style={{opacity: `${config.style.opacity}`, transform: `translateX(-${config.style.translateX}px)`}}
>


))}

)}

)}/>
)
}
export default FadeRoute


推荐阅读
author-avatar
李林1108_965
这个家伙很懒,什么也没留下!
Tags | 热门标签
RankList | 热门文章
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有