Skip to content

Commit

Permalink
Add more slides
Browse files Browse the repository at this point in the history
  • Loading branch information
MeFoDy committed Nov 12, 2023
1 parent e266892 commit 647d190
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 3 deletions.
56 changes: 53 additions & 3 deletions css-first/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1000,18 +1000,68 @@ <h2 class="shout">🙃 HTML</h2>
<img src="./pictures/js-boy.jpeg" alt="" class="place bottom right character">
</section>

<section class="slide title">
<blockquote class="big place">Давайте ускорим сайт! Что-то слышал про Core Web Vitals.<br>
<span class="cite-author">Заказчик</span>
</blockquote>
</section>

<section class="slide">
<h2>loading=lazy</h2>
<h2 class="shout">🦥 Ленивая загрузка?</h2>
</section>

<section class="slide">
<h2>Ресайзилка https://twitter.com/jh3yy/status/1707514774685106581?s=52&t=bjYuNpX1kBifO2rkUV1HWA https://til.simonwillison.net/css/resizing-textarea</h2>
<img src="./pictures/npm-lazy-load.jpeg" alt="" class="place rounded" width="400">
<a class="copyright" href="https://www.npmjs.com/package/vanilla-lazyload">vanilla-lazyload</a>
<img src="./pictures/js-boy.jpeg" alt="" class="place bottom right character">
</section>

<section class="slide">
<h2>Стилизация селектов https://talks.hiddedevries.nl/iohQPm/styling-selects-youve-got-options#sEH8WFc https://css-tricks.com/the-selectmenu-element/</h2>
<pre class="place big"><code>&lt;img src=&quot;photo.jpg&quot; loading=&quot;lazy&quot;&gt;</code></pre>
<img src="./pictures/html-girl.jpeg" alt="" class="place bottom right character">
</section>

<section class="slide">
<pre class="place big"><code>&lt;iframe src=&quot;frame.html&quot; loading=&quot;lazy&quot;&gt;</code></pre>
<img src="./pictures/html-girl.jpeg" alt="" class="place bottom right character">
</section>

<section class="slide">
<img src="./pictures/caniuse-loading-lazy.jpeg" alt="" class="place rounded" width="900">
<a class="copyright" href="https://caniuse.com/loading-lazy-attr">loading=lazy</a>
</section>

<section class="slide title">
<blockquote class="big place">Можем сделать панельки, которые изменяют размер?<br>
<span class="cite-author">Заказчик</span>
</blockquote>
</section>

<section class="slide">
<iframe class="cover width height" scrolling="no" title="It's 2023 and you can't style the resize handle..." src="https://codepen.io/jh3y/embed/WNLJLXw?default-tab=result" frameborder="no" allowtransparency="true" allowfullscreen="true">
See the Pen <a href="https://codepen.io/jh3y/pen/WNLJLXw">
It's 2023 and you can't style the resize handle...</a> by Jhey (<a href="https://codepen.io/jh3y">@jh3y</a>)
on <a href="https://codepen.io">CodePen</a>.
</iframe>
</section>

<section class="slide">
<pre><code>.panels {
display: grid;
grid-template-columns: auto 1fr; /* 👈 */
}

.resizer {
max-width: 100cqi;
overflow: hidden;
resize: horizontal; /* 👈 */
}</code></pre>
</section>

<section class="slide">
<img src="./pictures/caniuse-resize.jpeg" width="900" alt="" class="place rounded">
<a class="copyright" href="https://caniuse.com/css-resize">CSS: resize</a>
</section>

<section class="slide">
<iframe class="cover width height" scrolling="no" title="09. CSS Anchor Positioning Bar Chart" src="https://codepen.io/web-dot-dev/embed/PoeNKXJ?default-tab=result" frameborder="no" allowtransparency="true" allowfullscreen="true">
Expand Down
Binary file added css-first/pictures/caniuse-loading-lazy.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added css-first/pictures/caniuse-resize.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added css-first/pictures/npm-lazy-load.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 647d190

Please sign in to comment.