mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-08-11 08:34:27 +02:00
feat: Fixed at side
This commit is contained in:
@@ -46,9 +46,12 @@ module.exports = function(eleventyConfig) {
|
|||||||
return `<div class="lines">${content}</div>`;
|
return `<div class="lines">${content}</div>`;
|
||||||
});
|
});
|
||||||
|
|
||||||
eleventyConfig.addShortcode('rectangle', function(width) {
|
// `direction` can be `hor` or `ver`
|
||||||
|
eleventyConfig.addShortcode('rectangle', function(dir, size, width) {
|
||||||
|
const direction = dir || 'hor';
|
||||||
|
const s = size || 'sm';
|
||||||
const w = width || randomInteger(1, 4) * 20;
|
const w = width || randomInteger(1, 4) * 20;
|
||||||
return `<div class="rectangle rectangle--${w}"></div>`;
|
return `<div class="rectangle rectangle--${direction} rectangle--${s} rectangle--${w}"></div>`;
|
||||||
});
|
});
|
||||||
eleventyConfig.addShortcode('square', function() {
|
eleventyConfig.addShortcode('square', function() {
|
||||||
return `<div class="square"></div>`;
|
return `<div class="square"></div>`;
|
||||||
|
4
contents/_includes/patterns/fixed-at-side.njk
Normal file
4
contents/_includes/patterns/fixed-at-side.njk
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<div class="fixed-at-side">
|
||||||
|
<div class="fixed-at-side__side fixed-at-side__side--r">{% rectangle "ver", "md", 100 %}</div>
|
||||||
|
<div class="fixed-at-side__side fixed-at-side__side--l">{% rectangle "ver", "md", 100 %}</div>
|
||||||
|
</div>
|
40
contents/fixed-at-side.md
Normal file
40
contents/fixed-at-side.md
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
---
|
||||||
|
layout: layouts/post.njk
|
||||||
|
title: Fixed at side
|
||||||
|
description: Fix an element at the middle of side with CSS
|
||||||
|
keywords: css fixed
|
||||||
|
---
|
||||||
|
|
||||||
|
## HTML
|
||||||
|
|
||||||
|
```html
|
||||||
|
<!-- Fixed at the middle of left side -->
|
||||||
|
<div class="fixed-at-side fixed-at-side--l">
|
||||||
|
...
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Fixed at the middle of right side -->
|
||||||
|
<div class="fixed-at-side fixed-at-side--r">
|
||||||
|
...
|
||||||
|
</div>
|
||||||
|
```
|
||||||
|
|
||||||
|
## CSS
|
||||||
|
|
||||||
|
```css
|
||||||
|
.fixed-at-side {
|
||||||
|
position: fixed;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(0px, -50%);
|
||||||
|
}
|
||||||
|
.fixed-at-side--l {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
.fixed-at-side--r {
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
{% demo %}
|
||||||
|
{% include "patterns/fixed-at-side.njk" %}
|
||||||
|
{% enddemo %}
|
@@ -145,6 +145,12 @@ eleventyExcludeFromCollections: true
|
|||||||
<div class="pattern__title">Fixed at corner</div>
|
<div class="pattern__title">Fixed at corner</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="pattern__item">
|
||||||
|
<a class="pattern__link" href="/fixed-at-side/">
|
||||||
|
<div class="pattern__cover">{% include "patterns/fixed-at-side.njk" %}</div>
|
||||||
|
<div class="pattern__title">Fixed at side</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@@ -1,264 +0,0 @@
|
|||||||
import * as React from 'react';
|
|
||||||
import Head from 'next/head';
|
|
||||||
import { Heading, Spacer } from '@1milligram/design';
|
|
||||||
|
|
||||||
import { RelatedPatterns } from '../../components/RelatedPatterns';
|
|
||||||
import { Pattern } from '../../constants/Pattern';
|
|
||||||
import { PatternLayout } from '../../layouts/PatternLayout';
|
|
||||||
import BrowserFrame from '../../placeholders/BrowserFrame';
|
|
||||||
|
|
||||||
const Details: React.FC<{}> = () => {
|
|
||||||
return (
|
|
||||||
<PatternLayout pattern={Pattern.FixedAtSide}>
|
|
||||||
<Head>
|
|
||||||
<meta name="description" content="Fix an element at the middle of side with CSS" />
|
|
||||||
<meta name="og:description" content="Fix an element at the middle of side with CSS" />
|
|
||||||
<meta name="twitter:description" content="Fix an element at the middle of side with CSS" />
|
|
||||||
<meta name="keywords" content="css fixed" />
|
|
||||||
</Head>
|
|
||||||
<BrowserFrame
|
|
||||||
html={`
|
|
||||||
<!-- Fixed at the middle of side -->
|
|
||||||
<div class="container">
|
|
||||||
...
|
|
||||||
</div>
|
|
||||||
`}
|
|
||||||
css={`
|
|
||||||
.container {
|
|
||||||
right: 0;
|
|
||||||
position: fixed;
|
|
||||||
top: 50%;
|
|
||||||
transform: translate(0px, -50%);
|
|
||||||
}
|
|
||||||
`}
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
height: '100%',
|
|
||||||
position: 'relative',
|
|
||||||
width: '100%',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
backgroundColor: 'rgba(0, 0, 0, 0.3)',
|
|
||||||
height: '200px',
|
|
||||||
position: 'absolute',
|
|
||||||
right: 0,
|
|
||||||
top: '50%',
|
|
||||||
transform: 'translate(0, -50%)',
|
|
||||||
width: '32px',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</BrowserFrame>
|
|
||||||
<Spacer size="extraLarge" />
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<Heading level={2}>Use cases</Heading>
|
|
||||||
|
|
||||||
<div style={{ padding: '48px' }}>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
alignItems: 'center',
|
|
||||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
|
||||||
display: 'flex',
|
|
||||||
flex: 1,
|
|
||||||
height: '500px',
|
|
||||||
justifyContent: 'center',
|
|
||||||
marginBottom: '32px',
|
|
||||||
position: 'relative',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<p>A Feedback button</p>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
WebkitWritingMode: 'vertical-lr',
|
|
||||||
alignItems: 'center',
|
|
||||||
backgroundColor: 'rgba(0, 0, 0, 0.3)',
|
|
||||||
display: 'flex',
|
|
||||||
justifyContent: 'center',
|
|
||||||
padding: '8px',
|
|
||||||
position: 'absolute',
|
|
||||||
right: 0,
|
|
||||||
top: '50%',
|
|
||||||
transform: 'translate(0, -50%)',
|
|
||||||
writingMode: 'vertical-lr',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Feedback
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
alignItems: 'center',
|
|
||||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
|
||||||
display: 'flex',
|
|
||||||
flex: 1,
|
|
||||||
height: '500px',
|
|
||||||
justifyContent: 'center',
|
|
||||||
marginBottom: '32px',
|
|
||||||
position: 'relative',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<p>Navgiate between full page sections</p>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
alignItems: 'center',
|
|
||||||
display: 'flex',
|
|
||||||
flexDirection: 'column',
|
|
||||||
justifyContent: 'center',
|
|
||||||
padding: '8px',
|
|
||||||
position: 'absolute',
|
|
||||||
right: 0,
|
|
||||||
top: '50%',
|
|
||||||
transform: 'translate(0, -50%)',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
backgroundColor: '',
|
|
||||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
|
||||||
borderRadius: '9999px',
|
|
||||||
cursor: 'pointer',
|
|
||||||
height: '12px',
|
|
||||||
margin: '4px 0',
|
|
||||||
width: '12px',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
backgroundColor: 'rgba(0, 0, 0, 0.3)',
|
|
||||||
border: 'none',
|
|
||||||
borderRadius: '9999px',
|
|
||||||
cursor: 'pointer',
|
|
||||||
height: '12px',
|
|
||||||
margin: '4px 0',
|
|
||||||
width: '12px',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
backgroundColor: '',
|
|
||||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
|
||||||
borderRadius: '9999px',
|
|
||||||
cursor: 'pointer',
|
|
||||||
height: '12px',
|
|
||||||
margin: '4px 0',
|
|
||||||
width: '12px',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
backgroundColor: '',
|
|
||||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
|
||||||
borderRadius: '9999px',
|
|
||||||
cursor: 'pointer',
|
|
||||||
height: '12px',
|
|
||||||
margin: '4px 0',
|
|
||||||
width: '12px',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
alignItems: 'center',
|
|
||||||
border: '1px solid rgba(0, 0, 0, 0.3)',
|
|
||||||
display: 'flex',
|
|
||||||
flex: 1,
|
|
||||||
height: '500px',
|
|
||||||
justifyContent: 'center',
|
|
||||||
position: 'relative',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<p>Social sharing toolbar</p>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
alignItems: 'center',
|
|
||||||
display: 'flex',
|
|
||||||
flexDirection: 'column',
|
|
||||||
justifyContent: 'center',
|
|
||||||
padding: '8px',
|
|
||||||
position: 'absolute',
|
|
||||||
right: 0,
|
|
||||||
top: '50%',
|
|
||||||
transform: 'translate(0, -50%)',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div style={{ margin: '4px 0' }}>
|
|
||||||
<svg
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
style={{
|
|
||||||
fill: 'none',
|
|
||||||
height: '24',
|
|
||||||
stroke: 'rgba(0, 0, 0, 0.5)',
|
|
||||||
strokeLinecap: 'round',
|
|
||||||
strokeLinejoin: 'round',
|
|
||||||
strokeWidth: 1,
|
|
||||||
width: '24',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<path
|
|
||||||
d={`M23,6.628l-2-0.5l1-2l-2.464,0.7c-1.809-1.688-4.644-1.589-6.332,0.22c-0.78,0.836-1.21,1.938-1.204,3.08v1
|
|
||||||
c-3.539,0.73-6.634-1.2-9.5-4.5c-0.5,2.667,0,4.667,1.5,6l-3-0.5c0.405,2.069,1.362,3.7,4,4l-2.5,1c1,2,2.566,2.31,5,2.5
|
|
||||||
c-1.893,1.353-4.174,2.054-6.5,2c12.755,5.669,20-2.664,20-10V8.3L23,6.628z`}
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<div style={{ margin: '4px 0' }}>
|
|
||||||
<svg
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
style={{
|
|
||||||
fill: 'none',
|
|
||||||
height: '24',
|
|
||||||
stroke: 'rgba(0, 0, 0, 0.5)',
|
|
||||||
strokeLinecap: 'round',
|
|
||||||
strokeLinejoin: 'round',
|
|
||||||
strokeWidth: 1,
|
|
||||||
width: '24',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<path
|
|
||||||
d={`M12.5,23.5h-11c-0.552,0-1-0.448-1-1v-21c0-0.552,0.448-1,1-1h21c0.552,0,1,0.448,1,1v21c0,0.552-0.448,1-1,1
|
|
||||||
h-6v-9h2.559c0.254,0.002,0.469-0.186,0.5-0.438l0.375-3c0.034-0.274-0.16-0.524-0.434-0.558c-0.022-0.003-0.044-0.004-0.066-0.004
|
|
||||||
H16.5V9.185c0.001-0.931,0.755-1.684,1.686-1.685H20c0.276,0,0.5-0.224,0.5-0.5V4c0-0.276-0.224-0.5-0.5-0.5h-1.814
|
|
||||||
c-3.139,0.003-5.682,2.546-5.686,5.685V10.5H10c-0.276,0-0.5,0.224-0.5,0.5v3c0,0.276,0.224,0.5,0.5,0.5h2.5V23.5z`}
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<div style={{ margin: '4px 0' }}>
|
|
||||||
<svg
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
style={{
|
|
||||||
fill: 'none',
|
|
||||||
height: '24',
|
|
||||||
stroke: 'rgba(0, 0, 0, 0.5)',
|
|
||||||
strokeLinecap: 'round',
|
|
||||||
strokeLinejoin: 'round',
|
|
||||||
strokeWidth: 1,
|
|
||||||
width: '24',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<path
|
|
||||||
d={`M6.5,0.5h11c3.314,0,6,2.686,6,6v11c0,3.314-2.686,6-6,6h-11c-3.314,0-6-2.686-6-6v-11
|
|
||||||
C0.5,3.186,3.186,0.5,6.5,0.5z M12,6c3.314,0,6,2.686,6,6s-2.686,6-6,6s-6-2.686-6-6S8.686,6,12,6z
|
|
||||||
M19,3.5
|
|
||||||
c0.828,0,1.5,0.672,1.5,1.5S19.828,6.5,19,6.5S17.5,5.828,17.5,5S18.172,3.5,19,3.5z`}
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<Spacer size="extraLarge" />
|
|
||||||
<RelatedPatterns patterns={[Pattern.FixedAtCorner]} />
|
|
||||||
</PatternLayout>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Details;
|
|
@@ -1,31 +0,0 @@
|
|||||||
import * as React from 'react';
|
|
||||||
|
|
||||||
import Frame from '../../placeholders/Frame';
|
|
||||||
|
|
||||||
const Cover: React.FC<{}> = () => {
|
|
||||||
return (
|
|
||||||
<Frame>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
height: '100%',
|
|
||||||
position: 'relative',
|
|
||||||
width: '100%',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
backgroundColor: 'rgba(0, 0, 0, 0.3)',
|
|
||||||
height: '40%',
|
|
||||||
position: 'absolute',
|
|
||||||
right: 0,
|
|
||||||
top: '50%',
|
|
||||||
transform: 'translate(0, -50%)',
|
|
||||||
width: '16px',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</Frame>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Cover;
|
|
@@ -33,6 +33,7 @@
|
|||||||
@import './patterns/feature-comparison';
|
@import './patterns/feature-comparison';
|
||||||
@import './patterns/feature-list';
|
@import './patterns/feature-list';
|
||||||
@import './patterns/fixed-at-corner';
|
@import './patterns/fixed-at-corner';
|
||||||
|
@import './patterns/fixed-at-side';
|
||||||
|
|
||||||
// Placeholders
|
// Placeholders
|
||||||
@import './placeholders/circle';
|
@import './placeholders/circle';
|
||||||
|
21
styles/patterns/_fixed-at-side.scss
Normal file
21
styles/patterns/_fixed-at-side.scss
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
.fixed-at-side {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border: 1px solid rgba(0, 0, 0, .3);
|
||||||
|
border-radius: 0.25rem;
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fixed-at-side__side {
|
||||||
|
height: 40%;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(0px, -50%);
|
||||||
|
}
|
||||||
|
.fixed-at-side__side--l {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
.fixed-at-side__side--r {
|
||||||
|
right: 0;
|
||||||
|
}
|
@@ -1,20 +1,56 @@
|
|||||||
.rectangle {
|
.rectangle {
|
||||||
background: rgba(0, 0, 0, .3);
|
background: rgba(0, 0, 0, .3);
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
height: 0.5rem;
|
|
||||||
}
|
}
|
||||||
.rectangle--20 {
|
.rectangle--hor {
|
||||||
width: 20%;
|
&.rectangle--20 {
|
||||||
|
width: 20%;
|
||||||
|
}
|
||||||
|
&.rectangle--40 {
|
||||||
|
width: 40%;
|
||||||
|
}
|
||||||
|
&.rectangle--60 {
|
||||||
|
width: 60%;
|
||||||
|
}
|
||||||
|
&.rectangle--80 {
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
&.rectangle--100 {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
&.rectangle--sm {
|
||||||
|
height: 0.5rem;
|
||||||
|
}
|
||||||
|
&.rectangle--md {
|
||||||
|
height: 2rem;
|
||||||
|
}
|
||||||
|
&.rectangle--lg {
|
||||||
|
height: 4rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.rectangle--40 {
|
.rectangle--ver {
|
||||||
width: 40%;
|
&.rectangle--20 {
|
||||||
}
|
height: 20%;
|
||||||
.rectangle--60 {
|
}
|
||||||
width: 60%;
|
&.rectangle--40 {
|
||||||
}
|
height: 40%;
|
||||||
.rectangle--80 {
|
}
|
||||||
width: 80%;
|
&.rectangle--60 {
|
||||||
}
|
height: 60%;
|
||||||
.rectangle--100 {
|
}
|
||||||
width: 100%;
|
&.rectangle--80 {
|
||||||
|
height: 80%;
|
||||||
|
}
|
||||||
|
&.rectangle--100 {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
&.rectangle--sm {
|
||||||
|
width: 0.5rem;
|
||||||
|
}
|
||||||
|
&.rectangle--md {
|
||||||
|
width: 2rem;
|
||||||
|
}
|
||||||
|
&.rectangle--lg {
|
||||||
|
width: 4rem;
|
||||||
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user