diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-13 17:54:18 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-13 17:54:18 +0800 |
commit | 5bd185e8319f654d1691b021d38c934983a1f107 (patch) | |
tree | e85d8fa229209fbb70e621338979b74ba7249c2d /packages/website/ts/@next/pages | |
parent | be045dad9bd026cb6d4323d3b70e3ff003cb0daa (diff) | |
download | dexon-sol-tools-5bd185e8319f654d1691b021d38c934983a1f107.tar.gz dexon-sol-tools-5bd185e8319f654d1691b021d38c934983a1f107.tar.zst dexon-sol-tools-5bd185e8319f654d1691b021d38c934983a1f107.zip |
Adds images in instant page
Diffstat (limited to 'packages/website/ts/@next/pages')
-rw-r--r-- | packages/website/ts/@next/pages/about/team.tsx | 24 | ||||
-rw-r--r-- | packages/website/ts/@next/pages/instant.tsx | 62 |
2 files changed, 60 insertions, 26 deletions
diff --git a/packages/website/ts/@next/pages/about/team.tsx b/packages/website/ts/@next/pages/about/team.tsx index fe4723205..5a73d1f89 100644 --- a/packages/website/ts/@next/pages/about/team.tsx +++ b/packages/website/ts/@next/pages/about/team.tsx @@ -195,11 +195,11 @@ export const NextAboutTeam = () => ( width="70%" maxWidth="800px" > - <WrapGrid isWrapped={true} isCentered={false}> + <StyledGrid isWrapped={true} isCentered={false}> {_.map(team, (info: TeamMember, index) => ( <Member key={`team-${index}`} name={info.name} title={info.title} imageUrl={info.imageUrl} /> ))} - </Wrap> + </StyledGrid> </Column> </Section> @@ -213,17 +213,27 @@ export const NextAboutTeam = () => ( <Heading size="medium">Advisors</Heading> </Column> - <Column> - <WrapGrid isWrapped={true} isCentered={false}> + <Column + width="70%" + maxWidth="800px" + > + <StyledGrid isWrapped={true} isCentered={false}> {_.map(advisors, (info: TeamMember, index) => ( <Member key={`advisor-${index}`} name={info.name} title={info.title} imageUrl={info.imageUrl} /> ))} - </WrapGrid> + </StyledGrid> </Column> </Section> </AboutPageLayout> ); +const StyledGrid = styled.div` + &:after { + content: ''; + clear: both; + } +`; + const Member = ({ name, title, imageUrl }: TeamMember) => ( <StyledMember> <img src={imageUrl} alt={name}/> @@ -233,8 +243,10 @@ const Member = ({ name, title, imageUrl }: TeamMember) => ( ); const StyledMember = styled.div` - width: calc(25% - 10px); + width: calc(25% - 15px); margin-bottom: 10px; + float: left; + margin-right: 10px; img, svg { width: 100%; diff --git a/packages/website/ts/@next/pages/instant.tsx b/packages/website/ts/@next/pages/instant.tsx index a16640b54..3608afebf 100644 --- a/packages/website/ts/@next/pages/instant.tsx +++ b/packages/website/ts/@next/pages/instant.tsx @@ -71,8 +71,10 @@ export const Next0xInstant = () => ( <Section isFullWidth={true} isPadded={false} padding="30px 0"> <MarqueeWrap> <div> - {[...Array(20)].map((item, index) => ( - <Card index={index} /> + {[...Array(12)].map((item, index) => ( + <Card index={index}> + <img src={`/images/@next/0x-instant/widget-${(index % 6) + 1}.png`} /> + </Card> ))} </div> </MarqueeWrap> @@ -110,10 +112,15 @@ export const Next0xInstant = () => ( </SiteWrap> ); -// scroll calc for infinite is (width * total / 2) + padding +// scroll animation calc is simply (imageWidth * totalRepetitions) / 2 const scroll = keyframes` 0% { transform: translate3d(0, 0, 0) } - 100% { transform: translate3d(-2615px, 0, 0) } + 100% { transform: translate3d(-2220px, 0, 0) } +`; + +const scrollMobile = keyframes` + 0% { transform: translate3d(0, 0, 0) } + 100% { transform: translate3d(-1800px, 0, 0) } `; const fadeUp = keyframes` @@ -127,38 +134,53 @@ const fadeUp = keyframes` } `; -// width = (260 * 20) - (15 * 19) +// width = 370 * 12 const MarqueeWrap = styled.div` width: 100vw; - height: 380px; + height: 514px; padding-bottom: 60px; > div { - width: 5485px; - height: 380px; + height: auto; display: flex; - animation: ${scroll} 30s linear infinite; will-change: transform; + } + + @media (min-width: 768px) { + > div { + width: 4440px; + animation: ${scroll} 30s linear infinite; + } + } - img { - width: auto; - height: 380px; - } + @media (max-width: 768px) { + > div { + width: 3600px; + animation: ${scrollMobile} 30s linear infinite; + } } `; const Card = styled.div` - width: 260px; - height: 370px; - background: #555; - border-radius: 5px; - display: inline-block; opacity: 0; + flex-shrink: 0; transform: translateY(10px); will-change: opacity, transform; animation: ${fadeUp} 0.75s ${props => `${props.index * 0.05}s`} forwards; - & + & { - margin-left: 15px; + img { + height: auto; + } + + @media (min-width: 768px) { + img { + width: 370px; + } + } + + @media (max-width: 768px) { + img { + width: 300px; + } } `; |