See You Again

前端聚焦周刊:第 441 期

这里是 Frontend Focus 的中文翻译项目,每周在 己思 平台首发。

原文:Frontend Focus issue 441

翻译及校对:richshaw2015Yully Che

🚀 刊首

最小化 CSS 框架切换器

There are a lot of so called ‘minimal’ CSS systems out there, such as new.css and GitHub’s Primer but it can be hard to sort through them for something you’d like. Enter this ‘minimal CSS framework switcher’ where you get to preview lots of minimal CSS frameworks on a single page. Alternatively, you can find a list of all the frameworks involved here.

来源:Liam Doherty

Lighthouse 6.0 的新功能

Lighthouse 6 (the automated website UX auditing tool) has just dropped. Some of the changes include new metrics, audits for unused JavaScript, changes to the Chrome extension, and lots more.

  1. npm install -g lighthouse
  2. lighthouse https://www.example.com --view

来源:Connor Clark

现代网络的另一种想法

What if everyone’s wrong? Can we solve things in a better way that single page applications? Interesting thought piece and Rich Harris replied with In Defense of the Modern Web.

来源:Tom MacWright

Just How Bad Is The ICO’s Draft ‘Age Appropriate’ Design Code?

The author proclaims that as “a policy wonk, a technologist, a privacy campaigner, and as a parent” the UK data protection regulator’s proposed ‘Age Appropriate Design Code’ is one of the worst proposals she’s ever seen, and could result in age-gating across the internet, and a huge increase in data collection.

来源:Heather Burns

Chrome 83 为开发者提供的新功能

Version 83 is rolling out to stable now, and adds trusted types support, introduces changes to styling in HTML form controls, and more. Here’s a four-minute video version that covers the changes if you’d prefer. Secure DNS (DNS-over-HTTPS) support is another interesting development.

来源:Pete Le Page (Google)

Understanding Cumulative Layout Shift

Content moving unexpectedly on a page can be really irritating. This 20-minute explainer looks at the new ‘Cumulative Layout Shift’ speed metric (reported in Lightouse 6.0) and how it can help developers understand the impact of this problem on their pages.

来源:Annie Sullivan and Steve Kobes

运行在 Linux 上的 Edge

Spotted at Microsoft’s Build 2020 conf where Microsoft has been releasing things left, right, and center like a package manager for Windows and Windows Terminal 1.0.

来源:Rich Woods

⚡️ Quick bits

📙 文章、教程、观点

极简的 HTML

The irony here is that this blog is literally in plain text. But overall, some good points about how to keep your HTML brief, should you want to reduce character counts.

来源:Ryan Jacobs

23 年了,网站仍然需要提速

In this somewhat historical look at website and internet speed, Kathryn looks at the fact that page speeds have not improved over time in spite of the increase in internet speed.

来源:Kathryn Whitenton

使用 calc() 计算准确行高

A quick, but math-heavy post by Jesús Ricarte on optimal line-height values that are more maintainable.

来源:Jesús Ricarte

IE11 在 Oct 2020 停止维护?

Some interesting thoughts on Windows 10 and supporting IE11. As the author points out, he made up the term ‘mainstream EOL’ and he links to a response from an Edge team member.

来源:Shawn Wang

表单设计:多个还是一个

Some web forms use multiple inputs for what really should be a single unit of data. This usability guide looks at the drawbacks of that approach and how to improve the experience.

来源:adam silver

Safe/Unsafe Alignment in CSS Flexbox

This is a brief look at the new safe keyword that can be used with the align-items property in Flexbox, so far only supported in Firefox.

  1. .something {
  2. display: flex;
  3. // 👇 what is that? 😲
  4. align-items: safe center;
  5. }

来源:stefan judis

使用空闲检测 API 检测不活跃用户

Currently in development, this API can be used to find out when a user isn’t actively using their device.

来源:Thomas Steiner

停止基于用户位置设置网站语言

A little PSA on why this might not always be the best idea…

来源:Pedro Pimenta

🔧 代码、工具、资源

Animal Crossing: Isabelle’s Day Off

Yep, I’m playing Animal Crossing at the moment, so felt it appropriate to include this great little animated diorama created with CSS. There’s also a neat time-lapse video of it all being put together. Impressive!

来源:Tee Diang codepen

IntersectionObserver Visualizer

If you’re new to using the IntersectionObserver API, this useful interactive demo might help you comprehend it a little better.

来源:michelle barker

Stylemug: A CSS-in-JS Library with Support for Atomic CSS Extraction

Another solution on the CSS-in-JS scene that features the ability to extract CSS rules to a .css file, which then replaces the stylesheet in your bundle.

  1. import React from 'react';
  2. import stylemug from 'stylemug';
  3. const styles = stylemug.create({
  4. default: {
  5. backgroundColor: 'red',
  6. color: 'black',
  7. },
  8. large: {
  9. fontSize: '32px',
  10. },
  11. });
  12. function App() {
  13. const [large, toggleLarge] = useToggle(true);
  14. return (
  15. <div className={styles('default', large && 'large')}>
  16. <button onClick={toggleLarge}>Toggle me</button>
  17. </div>
  18. );
  19. }

来源:Matthias Van Parijs

new.css: A Classless CSS Framework to Write Modern Websites using Only HTML

Weighs only ~4.5kb. Demo here.

来源:xz

🐦 …spotted on Twitter

Here’s a list of all the different length units you can use in CSS. I don’t think I was familar with the Q unit.

💻 招聘

译者注:如需了解,请查看原文

🗓 未来大事记

译者注:如需了解,请查看原文

2020-08-12 喜欢

Copyright © 2015-2022 BY-NC-ND 4.0

回到顶部 ↑