mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-22 18:26:39 +02:00
154 lines
5.8 KiB
TypeScript
154 lines
5.8 KiB
TypeScript
/**
|
|
* A collection of popular layouts and patterns made with CSS (https://csslayout.io)
|
|
* (c) 2019 - 2021 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
|
|
*/
|
|
|
|
import * as React from 'react';
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
import './mega-menu.css';
|
|
|
|
import RelatedPatterns from '../../components/RelatedPatterns';
|
|
import Pattern from '../../constants/Pattern';
|
|
import DetailsLayout from '../../layouts/DetailsLayout';
|
|
import Block from '../../placeholders/Block';
|
|
import BrowserFrame from '../../placeholders/BrowserFrame';
|
|
import Rectangle from '../../placeholders/Rectangle';
|
|
import Triangle from '../../placeholders/Triangle';
|
|
|
|
const Details: React.FC<{}> = () => {
|
|
return (
|
|
<DetailsLayout pattern={Pattern.MegaMenu}>
|
|
<Helmet>
|
|
<meta name="description" content="Create a mega menu with CSS" />
|
|
<meta name="og:description" content="Create a mega menu with CSS" />
|
|
<meta name="twitter:description" content="Create a mega menu with CSS" />
|
|
<meta name="keywords" content="css mega menu" />
|
|
</Helmet>
|
|
<div className='p-8 pb-20'>
|
|
<div style={{ lineHeight: 1.5, marginBottom: '16px' }}>
|
|
Move the mouse over the second navigation item to see the mega menu.
|
|
</div>
|
|
<BrowserFrame
|
|
html={`
|
|
<div class="container">
|
|
<!-- Item -->
|
|
...
|
|
|
|
<!-- An item that triggers displaying the mega menu -->
|
|
<div class="container__trigger">
|
|
<!-- The trigger item's content -->
|
|
<div>...</div>
|
|
|
|
<!-- Mega menu -->
|
|
<div class="container__content">
|
|
...
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`}
|
|
css={`
|
|
.container {
|
|
/* Used to position the mega menu */
|
|
position: relative;
|
|
}
|
|
|
|
.container__trigger:hover .container__content {
|
|
/* Show the mega menu when hovering the trigger item */
|
|
display: block;
|
|
}
|
|
|
|
.container__content {
|
|
/* Border */
|
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
margin-top: -1px;
|
|
|
|
/* Hidden by default */
|
|
display: none;
|
|
|
|
/* Absolute position */
|
|
left: 0px;
|
|
position: absolute;
|
|
top: 100%;
|
|
|
|
/* Take full width */
|
|
width: 100%;
|
|
|
|
/* Displayed on top of other elements */
|
|
background: #fff;
|
|
z-index: 9999;
|
|
}
|
|
`}
|
|
>
|
|
<div style={{ padding: '8px' }}>
|
|
<div className='p-mega-menu-container'>
|
|
<div
|
|
style={{
|
|
alignItems: 'center',
|
|
border: '1px solid rgba(0, 0, 0, 0.3)',
|
|
display: 'inline-flex',
|
|
justifyContent: 'center',
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
borderRight: '1px solid rgba(0, 0, 0, 0.3)',
|
|
padding: '16px',
|
|
width: '150px',
|
|
}}
|
|
>
|
|
<Rectangle />
|
|
</div>
|
|
<div
|
|
className='p-mega-menu-trigger'
|
|
style={{
|
|
borderRight: '1px solid rgba(0, 0, 0, 0.3)',
|
|
width: '180px',
|
|
}}
|
|
>
|
|
<div style={{ display: 'flex', padding: '16px' }}>
|
|
<div style={{ flex: 1, marginRight: '8px' }}><Rectangle /></div>
|
|
<Triangle size={8} corner='b' />
|
|
</div>
|
|
<div className='p-mega-menu-content'>
|
|
<div style={{ display: 'flex' }}>
|
|
<div style={{ flex: 1, padding: '16px' }}>
|
|
<Block numberOfBlocks={10} />
|
|
</div>
|
|
<div style={{ flex: 1, padding: '16px' }}>
|
|
<Block numberOfBlocks={6} />
|
|
</div>
|
|
<div style={{ flex: 1, padding: '16px' }}>
|
|
<Block numberOfBlocks={8} />
|
|
</div>
|
|
<div style={{ flex: 1, padding: '16px' }}>
|
|
<Block numberOfBlocks={6} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
style={{
|
|
padding: '16px',
|
|
width: '120px',
|
|
}}
|
|
>
|
|
<Rectangle />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div style={{ marginTop: '16px' }}>
|
|
<Block numberOfBlocks={10} />
|
|
</div>
|
|
</div>
|
|
</BrowserFrame>
|
|
</div>
|
|
|
|
<RelatedPatterns patterns={[Pattern.Dropdown, Pattern.Menu, Pattern.NestedDropdowns]} />
|
|
</DetailsLayout>
|
|
);
|
|
};
|
|
|
|
export default Details;
|