Section3.jsx 806 B

1234567891011121314151617181920212223242526272829
  1. import { Action } from "../action";
  2. import Viewer from "../components/Viewer";
  3. import { TimeLineLabelText } from "../components/TimeLineText";
  4. export default function Section3(props) {
  5. // eslint-disable-next-line react/prop-types
  6. const debug = props.debug || false;
  7. return (
  8. <Viewer
  9. height={"400vh"}
  10. name="Vessel Steadicam"
  11. path="vessel-steadi-10fps-873-rev1"
  12. frameCount={64}
  13. debug={debug}
  14. enterTween={Action.crossFadeIn}
  15. exitTween={Action.pinForExit}
  16. >
  17. <TimeLineLabelText
  18. verticalOffset={"70vh"}
  19. duration={0.15}
  20. fade={0.1}
  21. progressPosition={0}
  22. >
  23. <div>美索不达米亚人认为,人乃为服务于神而造。</div>
  24. </TimeLineLabelText>
  25. </Viewer>
  26. );
  27. }