Section10.jsx 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import { Action } from "../action";
  2. import { css } from "@emotion/react";
  3. import Viewer from "../components/Viewer";
  4. import { TimeLineLabelText } from "../components/TimeLineText";
  5. export default function Section10(props) {
  6. // eslint-disable-next-line react/prop-types
  7. const debug = props.debug || false;
  8. return (
  9. <Viewer
  10. height={"300vh"}
  11. debug={debug}
  12. name="Dictionary Render"
  13. path="dictionary-render-10fps-873-rev1"
  14. frameCount={45}
  15. pause={{ 45: 20 }}
  16. enterTween={Action.crossFadeIn}
  17. exitTween={Action.pinForExit}
  18. >
  19. <TimeLineLabelText
  20. fade={0.01}
  21. verticalOffset={"23vh"}
  22. duration={0.6}
  23. progressPosition={0.29}
  24. >
  25. <div>
  26. 测试文案: Section10 四维时代致力于人工智能三维数字化技术的.
  27. 研究与应用,以实现“数字万物”为愿景. 让数字化飞入寻常百姓家。
  28. </div>
  29. </TimeLineLabelText>
  30. </Viewer>
  31. );
  32. }