Section10.jsx 995 B

12345678910111213141516171819202122232425262728293031323334
  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. >
  18. <TimeLineLabelText
  19. fade={0.01}
  20. verticalOffset={"23vh"}
  21. duration={0.6}
  22. progressPosition={0.29}
  23. >
  24. <div>
  25. 测试文案: Section10 四维时代致力于人工智能三维数字化技术的.
  26. 研究与应用,以实现“数字万物”为愿景. 让数字化飞入寻常百姓家。
  27. </div>
  28. </TimeLineLabelText>
  29. </Viewer>
  30. );
  31. }