{F}rontendové nowwwinky

{𝐅}rontendisti v Betsys

příště:
{F}rontendisti 10. května, Na věnečku, Smíchov
Pipedrive: 3. května Machine learning & OpenAI

note:

note:

Letem swwwětem

Nemělo by vám uninkout

note:

Prohlížeče

Microsoft Edge 111

vydán 13. března 2023

note:

Firefox 112

vydán 11. dubna 2023

note:

Chrome 112

vydán 29. března 2023

.foo {
  color: red;

  &:hover {
    color: navy;
  }

  + .bar {
    color: blue;
  }
}

note:

Nelze (na rozdíl od preprocesrů)

form {
  border: 1px solid silver;

  input {
    margin: 1em;
  }
}
/* Invalid, because "input" is an identifier. */

Nutno takto (na rozdíl od preprocesrů)

form {
  border: 1px solid silver;

  & input { margin: 1em; }
  /* valid, no longer starts with an identifier */

  :is(input) { margin: 1em; }
  /* valid, starts with a colon,
     and equivalent to the previous rule. */
}

Safari 16.4

vydáno 27. března 2023

@media (100px <= width <= 1900px) {
    /* rulesets */
}

article {
    margin-trim: inline-start;
}

note:

Zachyceno v síti

OpenProps

note:

Josh Collinsworth: Ten tips for better CSS transitions and animations

note:

Daniel C. Wilson: Improving CSS Shapes with Trigonometric Functions

note:

Nevíte, co je to „překvapník“‽

note:

Penpot

note:

CodePen

Infinite loader (animace SVG)

note:

Pixelated image

  transform-origin: 0 0;
  transform: scale(6000, 1);
  background-image:inherit;
  image-rendering: pixelated;
  transition: all 2s cubic-bezier(.5,0,0,1) ;

note:

Díky, prezentace během večera na @frontendisti