Muestra las diferencias entre dos versiones de la página.
Ambos lados, revisión anterior Revisión previa Próxima revisión | Revisión previa | ||
clase:daw:diw:1eval:tema04 [2023/11/21 17:05] admin [Bucle @for to] |
clase:daw:diw:1eval:tema04 [2024/12/01 16:47] (actual) admin [Condicional @if] |
||
---|---|---|---|
Línea 12: | Línea 12: | ||
* [[https:// | * [[https:// | ||
+ | Curso de SASS: | ||
+ | * [[https:// | ||
===== Mixings ===== | ===== Mixings ===== | ||
Son como trozos de código CSS que puedes añadir en otra clase CSS. Es como llamar a una " | Son como trozos de código CSS que puedes añadir en otra clase CSS. Es como llamar a una " | ||
Línea 127: | Línea 129: | ||
===== Bucle @for to ===== | ===== Bucle @for to ===== | ||
- | Se usa para hacer bucle dese 0 a n-1 | + | Se usa para hacer un bucle desde '' |
* Bucle con índice. | * Bucle con índice. | ||
Línea 162: | Línea 164: | ||
===== Bucle @for through ===== | ===== Bucle @for through ===== | ||
- | Es un bucle desde el valor inicial al final | + | Se usa para hacer un bucle desde '' |
* Bucle con índice. | * Bucle con índice. | ||
<sxh sass> | <sxh sass> | ||
- | @for $i from 0 through 4 { | + | @for $i from 1 through 4 { |
.g--border-# | .g--border-# | ||
border: 10px * $i solid # | border: 10px * $i solid # | ||
Línea 177: | Línea 179: | ||
<sxh css> | <sxh css> | ||
- | .g--border-0 { | ||
- | border: 0px solid #00FF00; | ||
- | } | ||
- | |||
.g--border-1 { | .g--border-1 { | ||
border: 10px solid #00FF00; | border: 10px solid #00FF00; | ||
Línea 198: | Línea 196: | ||
</ | </ | ||
- | <note important> | ||
Línea 271: | Línea 268: | ||
<sxh sass> | <sxh sass> | ||
@mixin border($size) { | @mixin border($size) { | ||
- | $color:# | + | |
| | ||
@if $size>=3 { | @if $size>=3 { | ||
$color:# | $color:# | ||
+ | } @else { | ||
+ | $color:# | ||
} | } | ||
Línea 466: | Línea 465: | ||
</ | </ | ||
+ | Algunas de las variables de colores en la página principal de google, ¿te suena de algo?: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | === Ejemplo de menu lateral === | ||
+ | Ejemplo de menú lateral con variable locales. | ||
+ | Código de Àngela Hermosilla del Río | ||
+ | |||
+ | {{: | ||
+ | |||
+ | <sxh sass> | ||
+ | .c-menu-lateral { | ||
+ | --c-menu-logo-font-size: | ||
+ | --c-menu-option-titulo-font-size: | ||
+ | --c-menu-option-subtitulo-font-size: | ||
+ | |||
+ | --c-menu-font-family: | ||
+ | |||
+ | --c-menu-option-titulo-color: | ||
+ | --c-menu-option-subtitulo-color: | ||
+ | --c-menu-option-titulo-color-warning: | ||
+ | --c-menu-option-subtitulo-color-warning: | ||
+ | |||
+ | --c-menu-background-color: | ||
+ | --c-menu-background-color-hover: | ||
+ | --c-menu-background-color-warning: | ||
+ | --c-menu-background-color-warning-hover: | ||
+ | |||
+ | --c-menu-padding-exterior: | ||
+ | --c-menu-padding-interior: | ||
+ | |||
+ | --c-menu-width: | ||
+ | --c-menu-width-icono: | ||
+ | |||
+ | | ||
+ | display: grid; | ||
+ | grid-template-rows: | ||
+ | padding: | ||
+ | | ||
+ | &__logo { | ||
+ | font-size: var(--c-menu-logo-font-size); | ||
+ | padding: var(--c-menu-padding-exterior); | ||
+ | background-color: | ||
+ | | ||
+ | } | ||
+ | |||
+ | & | ||
+ | overflow: auto; | ||
+ | } | ||
+ | |||
+ | & | ||
+ | display: flex; | ||
+ | flex-direction: | ||
+ | padding: var(--c-menu-padding-exterior); | ||
+ | background-color: | ||
+ | |||
+ | & | ||
+ | padding: var(--c-menu-padding-exterior); | ||
+ | width: var(--c-menu-width-icono); | ||
+ | } | ||
+ | & | ||
+ | font-weight: | ||
+ | font-size: var(--c-menu-option-titulo-font-size); | ||
+ | color: var(--c-menu-option-titulo-color); | ||
+ | padding: var(--c-menu-padding-interior); | ||
+ | | ||
+ | & | ||
+ | color: var(--c-menu-option-titulo-color-warning); | ||
+ | } | ||
+ | } | ||
+ | & | ||
+ | font-size: var(--c-menu-option-subtitulo-font-size); | ||
+ | color: var(--c-menu-option-subtitulo-color); | ||
+ | padding: var(--c-menu-padding-interior); | ||
+ | |||
+ | & | ||
+ | color: var(--c-menu-option-subtitulo-color-warning); | ||
+ | } | ||
+ | } | ||
+ | | ||
+ | & | ||
+ | color: var(--c-menu-background-color-warning); | ||
+ | @include border(var(--c-menu-background-color-warning-hover), | ||
+ | |||
+ | :hover{ | ||
+ | color: var(--c-menu-background-color-warning-hover); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | :hover{ | ||
+ | background-color: | ||
+ | } | ||
+ | } | ||
+ | |||
+ | & | ||
+ | font-size: var(--c-menu-logo-font-size); | ||
+ | padding: var(--c-menu-padding-exterior); | ||
+ | background-color: | ||
+ | | ||
+ | } | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | <sxh html> | ||
+ | <div class=" | ||
+ | |||
+ | <div class=" | ||
+ | Ajuda DANA | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <i class=" | ||
+ | </ | ||
+ | <div class=" | ||
+ | Inicio | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <i class=" | ||
+ | </ | ||
+ | <div> | ||
+ | <div class=" | ||
+ | Casos activos | ||
+ | </ | ||
+ | <div class=" | ||
+ | Ver todos los casos activos | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <i class=" | ||
+ | </ | ||
+ | | ||
+ | <div> | ||
+ | <div class=" | ||
+ | Voluntómetro | ||
+ | </ | ||
+ | <div class=" | ||
+ | Medidor de voluntarios por localidad | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <i class=" | ||
+ | </ | ||
+ | | ||
+ | <div> | ||
+ | <div class=" | ||
+ | Solicitar ayuda | ||
+ | </ | ||
+ | <div class=" | ||
+ | Si necesitas asistencia | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | | ||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <i class=" | ||
+ | </ | ||
+ | | ||
+ | <div> | ||
+ | <div class=" | ||
+ | Ofrecer ayuda | ||
+ | </ | ||
+ | <div class=" | ||
+ | Si puedes ayudar a otros | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | <div class=" | ||
+ | <i class=" | ||
+ | </ | ||
+ | | ||
+ | <div> | ||
+ | <div class=" | ||
+ | Desaparecidos | ||
+ | </ | ||
+ | <div class=" | ||
+ | Reportar o buscar | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | <p class=" | ||
+ | <i class=" | ||
+ | </p> | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
===== Bootstrap ===== | ===== Bootstrap ===== | ||
En el siguiente artículo [[https:// | En el siguiente artículo [[https:// | ||
Línea 529: | Línea 736: | ||
==== Ejercicio 4 ==== | ==== Ejercicio 4 ==== | ||
Modifica la clase '' | Modifica la clase '' | ||
+ | |||
+ | ==== Ejercicio 5 ==== | ||
+ | Dado la siguiente variable de SASS llamada '' | ||
+ | |||
+ | <sxh sass> | ||
+ | $utilities: ( | ||
+ | " | ||
+ | type:0, | ||
+ | property: padding, | ||
+ | class: g--padding-, | ||
+ | values: ( | ||
+ | 1: 1px, | ||
+ | 2: 5px, | ||
+ | 3: 10px, | ||
+ | 4: 20px, | ||
+ | 5: 40px, | ||
+ | ) | ||
+ | ), | ||
+ | " | ||
+ | type:1, | ||
+ | property: font-size, | ||
+ | class: g--font-size-, | ||
+ | values: (6px, | ||
+ | ), | ||
+ | " | ||
+ | type:2, | ||
+ | property: width, | ||
+ | class: g--width-, | ||
+ | max:9 | ||
+ | ), | ||
+ | " | ||
+ | | ||
+ | | ||
+ | ); | ||
+ | </ | ||
+ | |||
+ | Que crea un programa en SASS para que genere el siguiente CSS: | ||
+ | |||
+ | <sxh CSS> | ||
+ | .g--padding-1 { | ||
+ | .g--padding-2 { | ||
+ | .g--padding-3 { | ||
+ | .g--padding-4 { | ||
+ | .g--padding-5 { | ||
+ | .g--font-size-xxxxs { | ||
+ | .g--font-size-xxxs { | ||
+ | .g--font-size-xxs { | ||
+ | .g--font-size-xs { | ||
+ | .g--font-size-s { | ||
+ | .g--font-size-m { | ||
+ | .g--font-size-l { | ||
+ | .g--font-size-xl { | ||
+ | .g--width-1 { | ||
+ | .g--width-2 { | ||
+ | .g--width-3 { | ||
+ | .g--width-4 { | ||
+ | .g--width-5 { | ||
+ | .g--width-6 { | ||
+ | .g--width-7 { | ||
+ | .g--width-8 { | ||
+ | .g--width-9 { | ||
+ | </ | ||
+ | |||
+ | Usa siempre que puedas funciones de SASS | ||
+ | |||
+ | < | ||
+ | |||
+ | <sxh> | ||
+ | @function getKeyFromIndex($index) { | ||
+ | $key: | ||
+ | @return $key; | ||
+ | } | ||
+ | |||
+ | @function getValueFromIndex($index) { | ||
+ | $value: | ||
+ | @return $value; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | $prefix: " | ||
+ | |||
+ | @each $utility-key, | ||
+ | @if ($utility-key!= " | ||
+ | $type: map-get($utility, | ||
+ | $property: | ||
+ | $class: map-get($utility, | ||
+ | |||
+ | |||
+ | @if ($type==0) { | ||
+ | $values: map-get($utility, | ||
+ | @each $key, $value in $values { | ||
+ | # | ||
+ | # | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | @if ($type==1){ | ||
+ | $keys: | ||
+ | $values: map-get($utility, | ||
+ | @for $index from 1 through length($values) { | ||
+ | $key: nth($keys, | ||
+ | $value: | ||
+ | |||
+ | # | ||
+ | # | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | @if ($type==2){ | ||
+ | $max: | ||
+ | @for $index from 1 through $max { | ||
+ | $key: getKeyFromIndex($index); | ||
+ | $value: | ||
+ | |||
+ | # | ||
+ | # | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ==== Ejercicio 6 ==== | ||
+ | Sabiendo que ya tienes los botones del tema 1. | ||
+ | |||
+ | Vamos ahora a hacer el componente '' | ||
+ | |||
+ | |||
+ | <sxh html> | ||
+ | <div class=" | ||
+ | <div class=" | ||
+ | Ventana modal | ||
+ | < | ||
+ | </ | ||
+ | <div class=" | ||
+ | bla bla | ||
+ | |||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Crea 3 mixing para reusar el CSS de '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ |