4518ed8311
Contient les tokens, composants et exemples adaptés au mobile, à utiliser comme référence lors du développement des vues smartphone. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
163 lines
5.9 KiB
HTML
163 lines
5.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr" data-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Exemple mobile — saisie & formulaires</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&family=Share+Tech+Mono&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
<link rel="stylesheet" href="../tokens/tokens.css">
|
|
|
|
<style>
|
|
html, body {
|
|
width: 100%; min-height: 100%;
|
|
background: radial-gradient(ellipse at top, var(--bg-2) 0%, var(--bg-1) 60%);
|
|
color: var(--ink-1);
|
|
overflow-x: hidden;
|
|
}
|
|
.page-top {
|
|
position: sticky; top: 0; z-index: 80;
|
|
padding: 14px 20px;
|
|
background: var(--surf-glass-strong);
|
|
backdrop-filter: blur(14px) saturate(150%);
|
|
border-bottom: 1px solid var(--border-2);
|
|
display: flex; align-items: center; gap: 14px;
|
|
box-shadow: var(--shadow-2);
|
|
}
|
|
.page-top h1 { margin: 0; font-size: 17px; font-weight: 700; }
|
|
.page-top h1 small {
|
|
font-family: var(--font-mono);
|
|
font-size: 10px; letter-spacing: 0.1em;
|
|
color: var(--ink-3); font-weight: 400;
|
|
margin-left: 8px; text-transform: uppercase;
|
|
}
|
|
.layout {
|
|
display: grid;
|
|
grid-template-columns: 420px 1fr;
|
|
gap: 32px;
|
|
padding: 32px;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
align-items: start;
|
|
}
|
|
@media (max-width: 1000px) {
|
|
.layout { grid-template-columns: 1fr; padding: 20px; }
|
|
.phone-col { position: relative !important; top: auto !important; margin: 0 auto; }
|
|
}
|
|
.phone-col {
|
|
position: sticky; top: 80px;
|
|
display: flex; flex-direction: column; align-items: center; gap: 14px;
|
|
}
|
|
.phone {
|
|
width: 390px; height: 780px;
|
|
background: #0c0907;
|
|
border-radius: 48px;
|
|
padding: 12px;
|
|
box-shadow: 0 0 0 2px #2a2520, 0 0 0 8px #1a1612, 0 20px 50px rgba(0,0,0,0.5);
|
|
position: relative;
|
|
}
|
|
.phone-screen {
|
|
width: 100%; height: 100%;
|
|
border-radius: 36px;
|
|
overflow: hidden;
|
|
background: var(--bg-1);
|
|
position: relative;
|
|
display: flex; flex-direction: column;
|
|
}
|
|
.phone-notch {
|
|
position: absolute; top: 12px; left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 120px; height: 30px;
|
|
background: #0c0907; border-radius: 18px;
|
|
z-index: 100; pointer-events: none;
|
|
}
|
|
.phone-controls {
|
|
display: flex; gap: 8px; align-items: center;
|
|
padding: 10px 14px;
|
|
background: var(--bg-3);
|
|
border: 1px solid var(--border-2);
|
|
border-radius: 999px;
|
|
box-shadow: var(--shadow-2);
|
|
}
|
|
.phone-controls .seg {
|
|
display: flex; background: var(--bg-1);
|
|
border-radius: 999px; padding: 3px; gap: 2px;
|
|
}
|
|
.phone-controls .seg button {
|
|
padding: 4px 10px; background: transparent;
|
|
border: none; border-radius: 999px;
|
|
color: var(--ink-3); cursor: pointer;
|
|
font-family: var(--font-mono); font-size: 10px;
|
|
letter-spacing: 0.05em; text-transform: uppercase;
|
|
}
|
|
.phone-controls .seg button.active {
|
|
background: var(--accent); color: var(--bg-1);
|
|
box-shadow: 0 2px 6px var(--accent-glow);
|
|
}
|
|
.doc { min-width: 0; }
|
|
.doc section { margin-bottom: 36px; scroll-margin-top: 80px; }
|
|
.doc h2 {
|
|
font-size: 22px; margin: 0 0 4px;
|
|
display: flex; align-items: center; gap: 10px;
|
|
}
|
|
.doc .desc {
|
|
color: var(--ink-3); font-size: 14px;
|
|
margin: 4px 0 16px; line-height: 1.55;
|
|
}
|
|
.doc .card {
|
|
padding: 18px; background: var(--bg-2);
|
|
border: 1px solid var(--border-2);
|
|
border-radius: 12px; box-shadow: var(--tile-3d);
|
|
margin-bottom: 12px;
|
|
}
|
|
.doc .pill-name {
|
|
display: inline-flex; align-items: center; gap: 6px;
|
|
padding: 3px 10px;
|
|
background: var(--accent-tint);
|
|
border: 1px solid var(--accent);
|
|
border-radius: 999px;
|
|
font-family: var(--font-mono);
|
|
font-size: 11px; color: var(--accent); font-weight: 600;
|
|
}
|
|
.doc .row-use {
|
|
display: grid; grid-template-columns: 140px 1fr; gap: 12px;
|
|
padding: 6px 0;
|
|
border-bottom: 1px dashed var(--border-1);
|
|
font-size: 13px;
|
|
}
|
|
.doc .row-use:last-child { border-bottom: 0; }
|
|
.doc .row-use .k {
|
|
font-family: var(--font-mono); font-size: 11px;
|
|
color: var(--ink-3);
|
|
}
|
|
.doc .row-use .v { color: var(--ink-2); }
|
|
.legend {
|
|
display: flex; align-items: center; gap: 6px;
|
|
font-family: var(--font-mono); font-size: 11px;
|
|
color: var(--ink-3);
|
|
}
|
|
</style>
|
|
|
|
<script src="https://unpkg.com/react@18.3.1/umd/react.development.js" integrity="sha384-hD6/rw4ppMLGNu3tX5cjIb+uRZ7UkRJ6BPkLpg4hAu/6onKUg4lLsHAs9EBPT82L" crossorigin="anonymous"></script>
|
|
<script src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.development.js" integrity="sha384-u6aeetuaXnQ38mYT8rp6sbXaQe3NL9t+IBXmnYxwkUI2Hw4bsp2Wvmx4yRQF1uAm" crossorigin="anonymous"></script>
|
|
<script src="https://unpkg.com/@babel/standalone@7.29.0/babel.min.js" integrity="sha384-m08KidiNqLdpJqLq95G/LEi8Qvjl/xUYll3QILypMoQ65QorJ9Lvtp2RXYGBFj1y" crossorigin="anonymous"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="root"></div>
|
|
|
|
<script type="text/babel" src="ui-kit.jsx"></script>
|
|
<script type="text/babel" src="mobile-kit.jsx"></script>
|
|
<script type="text/babel" src="mobile-sheets.jsx"></script>
|
|
<script type="text/babel" src="mobile-gestures.jsx"></script>
|
|
<script type="text/babel" src="mobile-swipeable.jsx"></script>
|
|
<script type="text/babel" src="mobile-forms.jsx"></script>
|
|
|
|
<script type="text/babel" src="exemple-mobile-saisie-app.jsx"></script>
|
|
<script type="text/babel" src="exemple-mobile-saisie-doc.jsx"></script>
|
|
|
|
</body>
|
|
</html>
|