6 abril, 2020
Diseñar un título h1 con un background css3 en blanco y negro a la mitad en un 50%, diseño de background en 50% negro y blanco con texto centrado con css
Suscríbete a nuestro canal en Youtube
SuscríbirseHola!!... diseñador web!
En ocaciones necesitamos realizar diseños CSS nuevos para innovar la parte visual de una página web, pues bien aqui voy a mostrarte como podemos hacer el siguiente diseño o efecto CSS que puedes entenderlo y usarlo en tus proyecto web FrontEnd: por favor sigue el link Ver demostración del efecto css
Sigue los siguientes pasos:
Diseñar un título h1 con un background css3 en blanco y negro a la mitad en un 50%,
Código fuente en HTML y CSS
<h1>CODEA</h1>
<style>
body{
margin: 0;
width: 100%;
height: 100vh;
background: linear-gradient(to right, white 0%, white 50%, black 50%, black 100%);
}
h1{
background: linear-gradient(to right, black 0%, black 50%, white 50%, white 100% );
color: white;
text-align: center;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 150px;
}
</style>
Otro Ejemplo con efecto cristal o tambien llamado EFECTO GLASSMORPHISM EN CSS
tendencia es un fondo semitransparente, con una sombra y borde sublimes. Pero también se añade un difuminado al fondo para que lo que queda detrás del fondo se “transforme” elegantemente dentro del mismo elemento
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Background 50% black and white </title>
<style>
:root{
--color-a: rgb(255, 255, 255);
--color-b: rgb(0, 0, 0);
}
body{
margin: 0;
background: linear-gradient(to right,var(--color-a) 50%, var(--color-b) 50%);
height: 100vh;
width: 100%;
}
h1{
background: linear-gradient(to right, var(--color-b) 50%, var(--color-a) 50%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 0.01px rgb(129, 129, 129);
text-align: center;
font-size: 75px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.parent{
display: grid;
place-items: center;
height: 100vh;
}
.child{
background: rgba(255, 255, 255, .2);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 1.5px solid rgba(209, 213, 219, 0.3);
border-radius: 10px;
padding: 20px;
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
<h1>WELCOME</h1>
</div>
</div>
</body>
</html>
Leido 15587 veces
© Copyright Codea App | LATAM | 2020 - 2024