1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-12 00:54:45 +02:00

Add sticky sections

This commit is contained in:
Phuoc Nguyen
2019-12-19 20:53:10 +07:00
parent 6e60a061e5
commit 3a4bf0d6d1
5 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
import React from 'react';
import Frame from '../../placeholders/Frame';
const Cover: React.FC<{}> = () => {
return (
<Frame>
<div
style={{
alignItems: 'center',
display: 'flex',
flexDirection: 'column',
height: '100%',
justifyContent: 'center',
}}
>
<div
style={{
backgroundColor: 'rgba(0, 0, 0, 0.1)',
flex: 1,
width: '100%',
}}
/>
<div
style={{
backgroundColor: 'rgba(0, 0, 0, 0.2)',
flex: 1,
width: '100%',
}}
/>
<div
style={{
backgroundColor: 'rgba(0, 0, 0, 0.3)',
flex: 1,
width: '100%',
}}
/>
</div>
</Frame>
);
};
export default Cover;

View File

@@ -0,0 +1,77 @@
import React from 'react';
import DetailsLayout from '../../layouts/DetailsLayout';
import BrowserFrame from '../../placeholders/BrowserFrame';
const Details: React.FC<{}> = () => {
return (
<DetailsLayout title="Sticky sections">
<div style={{ padding: '64px 32px' }}>
<div style={{ lineHeight: 1.5, marginBottom: '16px' }}>
Try to scroll the main content to see each section sticks to the top of page.
</div>
<BrowserFrame
content={(
<div
style={{
height: '100%',
overflow: 'scroll',
}}
>
<section
style={{
backgroundColor: 'rgba(0, 0, 0, 0.1)',
height: '100%',
position: 'sticky',
top: 0,
width: '100%',
}}
/>
<section
style={{
backgroundColor: 'rgba(0, 0, 0, 0.3)',
height: '100%',
position: 'sticky',
top: 0,
width: '100%',
}}
/>
<section
style={{
backgroundColor: 'rgba(0, 0, 0, 0.5)',
height: '100%',
position: 'sticky',
top: 0,
width: '100%',
}}
/>
</div>
)}
source={`
<div style="
height: 100%;
overflow: scroll;
">
<section style="
/* Take full size */
height: 100%;
width: 100%;
/* Stick at the top */
position: sticky;
top: 0;
">
...
</section>
<!-- Repeat other sections -->
...
</div>
`}
/>
</div>
</DetailsLayout>
);
};
export default Details;