1. Aspect Ratio with Padding Hack
-
Hack: Create a responsive element with a fixed aspect ratio using padding.
-
How it works: Use the padding-top or padding-bottom set to a percentage value. This percentage is relative to the width of the element, making it perfect for maintaining aspect ratios.
-
Example:
.aspect-ratio-box {
width: 100%;
padding-top: 56.25%; /* 16:9 aspect ratio */
position: relative;
}
.content {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
2. Centering Elements with max-content
-
Hack: Center block elements with unknown widths using max-content.
-
How it works: Set the width to max-content and use margin: auto to automatically center the element.
-
Example:
.centered {
width: max-content;
margin: auto;
}
3. Single Div Loader Animation
-
Hack: Create complex loaders using only one div and pseudo-elements.
-
How it works: Use ::before and ::after for multiple parts of the loader, applying animation without needing extra HTML.
-
Example:
.loader {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(45deg, transparent, #000);
animation: rotate 1s infinite linear;
position: relative;
}
.loader::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background: linear-gradient(45deg, transparent, #000);
transform: rotate(90deg);
}
@keyframes rotate {
to { transform: rotate(360deg); }
}
4. Creating Trapezoids with Borders
-
Hack: Use borders to create trapezoid shapes without any complex SVG or image.
-
How it works: Apply thick borders with transparent sides and different widths to form a trapezoid shape.
-
Example:
.trapezoid {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid #3498db;
}
5. CSS-Only Accordion
6. Scroll-Snap pour des sections à défilement fluide
-
Hack : Implémentez des sections à défilement fluide à l'aide des propriétés de défilement.
-
Comment ça marche : scroll-snap-type et scroll-snap-align peuvent verrouiller les éléments en place pendant que vous faites défiler.
-
Exemple :
.scroll-container {
scroll-snap-type : y obligatoire ;
overflow-y : scroll;
height : 100vh;
}
.scroll-item {
scroll- snap-align : début ;
hauteur : 100vh;
}
7. Inverser la couleur du texte sur des arrière-plans sombres
-
Hack : Ajustez dynamiquement la couleur du texte en fonction de la luminosité de l'arrière-plan à l'aide du mode mix-blend.
-
Comment ça marche : Combinez le mode mix-blend avec des variables CSS pour ajuster dynamiquement la couleur du texte.
-
Exemple :
.dynamic-text {
couleur : blanc ;
mix-blend-mode : différence ;
}
.dark-background {
couleur de fond : noir ;
}
8. Disposition diagonale avec des conteneurs inclinés
-
Hack : Utilisez transform: skew() pour créer des sections diagonales dans votre mise en page sans calculs complexes.
-
Comment ça marche : Inclinez le conteneur et ajustez le contenu à l'intérieur pour l'aligner correctement.
-
Exemple :
.diagonal {
transformation : skew(-20deg);
débordement : caché;
padding : 50px;
couleur d'arrière-plan : #f0f0f0;
}
.diagonal-content {
transformer : skew(20deg);
}
9. Trait de texte avec ombre
-
Hack : Simulez un trait de texte sans utiliser -webkit-text-stroke en superposant des effets d'ombre de texte.
-
Comment ça marche : Appliquez plusieurs ombres pour imiter un effet de trait de texte.
-
Exemple :
.text-stroke {
couleur : blanc ;
text-shadow :
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
10. Découpage d'élément avec chemin de clip
-
Hack : Créez des formes complexes et découpez des zones d'éléments à l'aide d'un chemin de détourage.
-
Comment ça marche : Utilisez diverses fonctions de découpage pour masquer des parties d'un élément sans altérer son contenu.
-
Exemple :
.clipped {
chemin du clip : polygone (50 % 0 %, 0 % 100 %, 100 % 100 %) ;
couleur d'arrière-plan : #3498db;
hauteur : 200 px ;
largeur : 200px;
>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!