remove best 5 animation
This commit is contained in:
parent
f646f5c927
commit
a9fb602079
|
@ -68,31 +68,20 @@ function Bestoil() {
|
|||
align={"center"}
|
||||
direction={{ base: "column", sm: "column", md: "row" }}
|
||||
>
|
||||
<MotionBox
|
||||
ref={bestOilRef}
|
||||
initial={{ opacity: 0, x: -50 }}
|
||||
justifyItems={"center"}
|
||||
animate={isBestOilInView ? { opacity: 1, x: 0 } : { opacity: 0, x: -50 }}
|
||||
transition={{ duration: 0.8 }}
|
||||
>
|
||||
|
||||
<Image src="/images/best5.webp"
|
||||
fit='contain'
|
||||
w={{ base: "70%", sm: "80%", md: '350px', lg: '500px' }}
|
||||
/>
|
||||
</MotionBox>
|
||||
|
||||
<MotionBox
|
||||
ref={oilChartRef}
|
||||
initial={{ opacity: 0, x: 50 }}
|
||||
animate={isOilChartInView ? { opacity: 1, x: 0 } : { opacity: 0, x: 50 }}
|
||||
transition={{ duration: 0.8 }}
|
||||
justifyItems={"center"}
|
||||
>
|
||||
|
||||
|
||||
|
||||
<Image src="/images/oilchart.webp"
|
||||
fit='contain'
|
||||
w={{ base: "80%", sm: "90%", md: '350px', lg: '500px' }}
|
||||
/>
|
||||
</MotionBox>
|
||||
|
||||
</Flex>
|
||||
|
||||
<Stack
|
||||
|
|
Loading…
Reference in New Issue