Post pobrano z: Bad Hairstyle, bad copycat? / Pas de quoi crâner?
Heavenly City: an Art Project by Yang Yongliang
Post pobrano z: Heavenly City: an Art Project by Yang Yongliang

Yang Yongliang is a Chinese artist based in Shanghai. He has a background of traditional Chinese art, such as calligraphy or painting, that started from a very early age. He pursued further art education at Hong-Kong Chinese and Shaghai Fine Arts Institute. He turned this knowledge into something new using modern digital art techniques. His work has been exhibited all around the world.

Yongliang’s project Heavenly City is one of his recent works, it uses digital techniques and photography to create scenes that look like traditional Chinese paintings with a twist. Entire cities seem built upon clouds of destruction, making it look ephemeral scenes doomed to disappear quickly.




When design goes wrong: 10 wonderful design fails
Post pobrano z: When design goes wrong: 10 wonderful design fails
The easiest way to demonstrate the purpose of design is maybe the absurd way. Good design isn’t always spectacular, while bad design will show you exactly what parts of the work the designer is paid for. Here are 10 examples of design fails that will make you smile.
1. Fashion Fart
When using a capital letter in a big format, make sure that people understand which word it belongs too. With poor positioning, it can take a whole new meaning.

2. Congratulations you have cancer
This is not the right way to announce a baby to new parents, even if she or he is born between June 21 or July 22.

3. M&Ms sticker placement
Not a mistake at first, but the label placement makes this packaging illustration very ambiguous. Not sure if I would remove it.

4. Failed price tag
Certainly, the worst possible way to add a price tag to clothes.

5. Nothing is possible
This doormat was designed with good intention, it was supposed to send a motivational message to cheer you up. Poor contrast and text placement turned it into a depressing way to welcome people.

6. This advertisement for a job
It’s either a poor URL choice or a genius way to test applicants’ dedication to get the job. If you can apply to this, you really displayed a certain focus ability.

7. This newspaper title
Yes, adding a reflection to a text that is integrated into the water makes sense, but you should be careful with any potential changes to the meaning.

8. Quit school
This anti-smoking advertisement was placed on a school bus, it totally changed the message.

9. Pregnancy test advertisement
Apparently, even after 7 months of pregnancy, you can have some doubt. Take the test!

10. Disabled elderly pregnant children
Yes, commas matter when it comes to sending a message.

Animating Layouts with the FLIP Technique
Post pobrano z: Animating Layouts with the FLIP Technique
User interfaces are most effective when they are intuitive and easily understandable to the user. Animation plays a major role in this – as Nick Babich said, animation brings user interfaces to life. However, adding meaningful transitions and micro-interactions is often an afterthought, or something that is “nice to have” if time permits. All too often, we experience web apps that simply “jump” from view to view without giving the user time to process what just happened in the current context.
This leads to unintuitive user experiences, but we can do better, by avoiding “jump cuts” and “teleportation” in creating UIs. After all, what’s more natural than real life, where nothing teleports (except maybe car keys), and everything you interact with moves with natural motion?
In this article, we’ll explore a technique called “FLIP” that can be used to animate the positions and dimensions of any DOM element in a performant manner, regardless of how their layout is calculated or rendered (e.g., height, width, floats, absolute positioning, transform, flexbox, grid, etc.)
Why the FLIP technique?
Have you ever tried to animate height, width, top, left, or any other properties besides transform and opacity? You might have noticed that the animations look a bit janky, and there’s a reason for that. When any property that triggers layout changes (such as `height`), the browser has to recursively check if any other element’s layout has changed as a result, and that can be expensive. If that calculation takes longer than one animation frame (around 16.7 milliseconds), then the animation frame will be skipped, resulting in „jank”
since that frame wasn’t rendered in time. In Paul Lewis’ article „Pixels are Expensive”, he goes further in depth at how pixels are rendered and the various performance expenses.
In short, our goal is to be short — we want to calculate the least amount of style changes necessary, as quickly as possible. The key to this is only animating transform and opacity, and FLIP explains how we can simulate layout changes using only transform.
What is FLIP?
FLIP is a mnemonic device and technique first coined by Paul Lewis, which stands for First, Last, Invert, Play. His article contains an excellent explanation of the technique, but I’ll outline it here:
- First: before anything happens, record the current (i.e., first) position and dimensions of the element that will transition. You can use
getBoundingClientRect()for this, as will be shown below. - Last: execute the code that causes the transition to instantaneously happen, and record the final (i.e., last) position and dimensions of the element.*
- Invert: since the element is in the last position, we want to create the illusion that it’s in the first position, by using
transformto modify its position and dimensions. This takes a little math, but it’s not too difficult. - Play: with the element inverted (and pretending to be in the first position), we can move it back to its last position by setting its
transformtonone.
Below is how these steps can be implemented:
const elm = document.querySelector('.some-element');
// First: get the current bounds
const first = getBoundingClientRect(elm);
// execute the script that causes layout change
doSomething();
// Last: get the final bounds
const last = getBoundingClientRect(elm);
// Invert: determine the delta between the
// first and last bounds to invert the element
const deltaX = first.left - last.left;
const deltaY = first.top - last.top;
const deltaW = first.width / last.width;
const deltaH = first.height / last.height;
// Play: animate the final element from its first bounds
// to its last bounds (which is no transform)
elm.animate([{
transformOrigin: 'top left',
transform: `
translate(${deltaX}px, ${deltaY}px)
scale(${deltaW}, ${deltaH})
`
}, {
transformOrigin: 'top left',
transform: 'none'
}], {
duration: 300,
easing: 'ease-in-out',
fill: 'both'
});
See the Pen How the FLIP technique works by David Khourshid (@davidkpiano) on CodePen.
There are two important things to note:
- If the element’s size changed, you can transform
scalein order to “resize” it with no performance penalty; however, make sure to settransformOriginto'top left'since that’s where we based our delta calculations. - We’re using the Web Animations API to animate the element here, but you’re free to use any other animation engine, such as GSAP, Anime, Velocity, Just-Animate, Mo.js and more.
Shared Element Transitions
One common use-case for transitioning an element between app views and states is that the final element might not be the same DOM element as the initial element. In Android, this is similar to a shared element transition, except that the element isn’t “recycled” from view to view in the DOM as it is on Android.
Nevertheless, we can still achieve the FLIP transition with a little magic illusion:
const firstElm = document.querySelector('.first-element');
// First: get the bounds and then hide the element (if necessary)
const first = getBoundingClientRect(firstElm);
firstElm.style.setProperty('visibility', 'hidden');
// execute the script that causes view change
doSomething();
// Last: get the bounds of the element that just appeared
const lastElm = document.querySelector('.last-element');
const last = getBoundingClientRect(lastElm);
// continue with the other steps, just as before.
// remember: you're animating the lastElm, not the firstElm.
Below is an example of how two completely disparate elements can appear to be the same element using shared element transitions. Click one of the pictures to see the effect.
See the Pen FLIP example with WAAPI by David Khourshid (@davidkpiano) on CodePen.
Parent-Child Transitions
With the previous implementations, the element bounds are based on the window. For most use cases, this is fine, but consider this scenario:
- An element changes position and needs to transition.
- That element contains a child element, which itself needs to transition to a different position inside the parent.
Since the previously calculated bounds are relative to the window, our calculations for the child element are going to be off. To solve this, we need to ensure that the bounds are calculated relative to the parent element instead:
const parentElm = document.querySelector('.parent');
const childElm = document.querySelector('.parent > .child');
// First: parent and child
const parentFirst = getBoundingClientRect(parentElm);
const childFirst = getBoundingClientRect(childElm);
doSomething();
// Last: parent and child
const parentLast = getBoundingClientRect(parentElm);
const childLast = getBoundingClientRect(childElm);
// Invert: parent
const parentDeltaX = parentFirst.left - parentLast.left;
const parentDeltaY = parentFirst.top - parentLast.top;
// Invert: child relative to parent
const childDeltaX = (childFirst.left - parentFirst.left)
- (childLast.left - parentLast.left);
const childDeltaY = (childFirst.top - parentFirst.top)
- (childLast.top - parentLast.top);
// Play: using the WAAPI
parentElm.animate([
{ transform: `translate(${parentDeltaX}px, ${parentDeltaY}px)` },
{ transform: 'none' }
], { duration: 300, easing: 'ease-in-out' });
childElm.animate([
{ transform: `translate(${childDeltaX}px, ${childDeltaY}px)` },
{ transform: 'none' }
], { duration: 300, easing: 'ease-in-out' });
A few things to note here, as well:
- The timing options for the parent and child (
duration,easing, etc.) do not necessarily need to match with this technique. Feel free to be creative! - Changing dimensions in parent and/or child (
width,height) was purposefully omitted in this example, since it is an advanced and complex topic. Let’s save that for another tutorial. - You can combine the shared element and parent-child techniques for greater flexibility.
Using Flipping.js for Full Flexibility
The above techniques might seem straightforward, but they can get quite tedious to code once you have to keep track of multiple elements transitioning. Android eases this burden by:
- baking shared element transitions into the core SDK
- allowing developers to identify which elements are shared by using a common
android:transitionNameXML attribute
I’ve created a small library called Flipping.js with the same idea in mind. By adding a data-flip-key="..." attribute to HTML elements, it’s possible to predictably and efficiently keep track of elements that might change position and dimensions from state to state.
For example, consider this initial view:
<section class="gallery">
<div class="photo-1" data-flip-key="photo-1">
<img src="/photo-1"/>
</div>
<div class="photo-2" data-flip-key="photo-2">
<img src="/photo-2"/>
</div>
<div class="photo-3" data-flip-key="photo-3">
<img src="/photo-3"/>
</div>
</section>
And this separate detail view:
<section class="details">
<div class="photo" data-flip-key="photo-1">
<img src="/photo-1"/>
</div>
<p class="description">
Lorem ipsum dolor sit amet...
</p>
</section>
Notice in the above example that there are 2 elements with the same data-flip-key="photo-1". Flipping.js tracks the “active” element by choosing the first element that meet these criteria:
- The element exists in the DOM (i.e., it hasn’t been removed or detached)
- The element is not hidden (hint:
getBoundingClientRect(elm)will have{ width: 0, height: 0 }for hidden elements) - Any custom logic specified in the
selectActiveoption.
Getting Started with Flipping.js
There’s a few different packages for Flipping, depending on your needs:
flipping.js: tiny and low-level; only emits events when element bounds changeflipping.web.js: uses WAAPI to animate transitionsflipping.gsap.js: uses GSAP to animate transitions- More adapters coming soon!
You can grab the minified code directly from unpkg:
- https://unpkg.com/flipping@latest/dist/flipping.js
- https://unpkg.com/flipping@latest/dist/flipping.web.js
- https://unpkg.com/flipping@latest/dist/flipping.gsap.js
Or you can npm install flipping --save and import it into your projects:
// import not necessary when including the unpkg scripts in a <script src="..."> tag
import Flipping from 'flipping/adapters/web';
const flipping = new Flipping();
// First: let Flipping read all initial bounds
flipping.read();
// execute the change that causes any elements to change bounds
doSomething();
// Last, Invert, Play: the flip() method does it all
flipping.flip();
Handling FLIP transitions as a result of a function call is such a common pattern, that the .wrap(fn) method transparently wraps (or “decorates”) the given function by first calling .read(), then getting the return value of the function, then calling .flip(), then returning the return value. This leads to much less code:
const flipping = new Flipping();
const flippingDoSomething = flipping.wrap(doSomething);
// anytime this is called, FLIP will animate changed elements
flippingDoSomething();
Here is an example of using flipping.wrap() to easily achieve the shifting letters effect. Click anywhere to see the effect.
See the Pen Flipping Birthstones #Codevember by David Khourshid (@davidkpiano) on CodePen.
Adding Flipping.js to Existing Projects
In another article, we created a simple React gallery app using finite state machines. It works just as expected, but the UI could use some smooth transitions between states to prevent “jumping” and improve the user experience. Let’s add Flipping.js into our React app to accomplish this. (Keep in mind, Flipping.js is framework-agnostic.)
Step 1: Initialize Flipping.js
The Flipping instance will live on the React component itself, so that it’s isolated to only changes that occur within that component. Initialize Flipping.js by setting it up in the componentDidMount lifecycle hook:
componentDidMount() {
const { node } = this;
if (!node) return;
this.flipping = new Flipping({
parentElement: node
});
// initialize flipping with the initial bounds
this.flipping.read();
}
By specifying parentElement: node, we’re telling Flipping to only look for elements with a data-flip-key in the rendered App, instead of the entire document.
Then, modify the HTML elements with the data-flip-key attribute (similar to React’s key prop) to identify unique and “shared” elements:
renderGallery(state) {
return (
<section className="ui-items" data-state={state}>
{this.state.items.map((item, i) =>
<img
src={item.media.m}
className="ui-item"
style={{'--i': i}}
key={item.link}
onClick={() => this.transition({
type: 'SELECT_PHOTO', item
})}
data-flip-key={item.link}
/>
)}
</section>
);
}
renderPhoto(state) {
if (state !== 'photo') return;
return (
<section
className="ui-photo-detail"
onClick={() => this.transition({ type: 'EXIT_PHOTO' })}>
<img
src={this.state.photo.media.m}
className="ui-photo"
data-flip-key={this.state.photo.link}
/>
</section>
)
}
Notice how the img.ui-item and img.ui-photo are represented by data-flip-key={item.link} and data-flip-key={this.state.photo.link} respectively: when the user clicks on an img.ui-item, that item is set to this.state.photo, so the .link values will be equal.
And since they are equal, Flipping will smoothly transition from the img.ui-item thumbnail to the larger img.ui-photo.
Now we need to do two more things:
- call
this.flipping.read()whenever the component will update - call
this.flipping.flip()whenever the component did update
Some of you might have already guessed where these method calls are going to occur: componentWillUpdate and componentDidUpdate, respectively:
componentWillUpdate() {
this.flipping.read();
}
componentDidUpdate() {
this.flipping.flip();
}
And, just like that, if you’re using a Flipping adapter (such as flipping.web.js or flipping.gsap.js), Flipping will keep track of all elements with a [data-flip-key] and smoothly transition them to their new bounds whenever they change. Here is the final result:
See the Pen FLIPping Gallery App by David Khourshid (@davidkpiano) on CodePen.
If you would rather implement custom animations yourself, you can use flipping.js as a simple event emitter. Read the documentation for more advanced use-cases.
Flipping.js and its adapters handle the shared element and parent-child transitions by default, as well as:
- interrupted transitions (in adapters)
- enter/move/leave states
- plugin support for plugins such as
mirror, which allows newly entered elements to “mirror” another element’s movement - and more planned in the future!
Resources
Similar libraries include:
- FlipJS by Paul Lewis himself, which handles simple single-element FLIP transitions
- React-Flip-Move, a useful React library by Josh Comeau
- BarbaJS, not necessarily a FLIP library, but one that allows you to add smooth transitions between different URLs, without page jumps.
Further resources:
- Animating the Unanimatable – Joshua Comeau
- FLIP your Animations – Paul Lewis
- Pixels are Expensive – Paul Lewis
- Improving User Flow Through Page Transitions – Luigi de Rosa
- Smart Transitions in User Experience Design – Adrian Zumbrunnen
- What Makes a Good Transition? – Nick Babich
- Motion Guidelines in Google’s Material Design
- Shared Element Transition with React Native
Animating Layouts with the FLIP Technique is a post from CSS-Tricks
BitLocation
Post pobrano z: BitLocation![]()
Drip
Post pobrano z: Drip![]()
Billie
Post pobrano z: Billie![]()
V6: Typography and Proportions
Post pobrano z: V6: Typography and Proportions
Here’s a good ol’ fashion blog post by Rob Weychert where he looks into the new design system that he implemented on his personal website and specifically the typographic system that ties everything together:
According to the OED, a scale is “a graduated range of values forming a standard system for measuring or grading something.” A piece of music using a particular scale—a limited selection of notes with a shared mathematic relationship—can effect a certain emotional tenor. Want to write a sad song? Use a minor scale. Changed your mind? Switch to a major scale and suddenly that same song is in a much better mood.
Spatial relationships can likewise achieve a certain visual harmony using similar principles, and the constraints a scale provides take a lot of the arbitrary guesswork out of the process of arranging elements in space. Most of what I design that incorporates type has a typographic scale as its foundation, which informs the typeface choices and layout proportions. The process of creating that scale begins by asking what the type needs to do, and what role contrasting sizes will play in that.
Direct Link to Article — Permalink
V6: Typography and Proportions is a post from CSS-Tricks
An Idea for a Simple Responsive Spreadsheet
Post pobrano z: An Idea for a Simple Responsive Spreadsheet
How do you make a spreadsheet-like interface responsive without the use of any JavaScript? This is the question I’ve been asking myself all week as I’ve been working on a new project and trying to figure out how to make the simplest spreadsheet possible. I wanted to avoid using a framework and instead, I decided to experiment with some new properties in order to use nothing but a light touch of CSS.
Spoilers! This is what I’ve come up with so far (oh and please note that this demo currently works in the latest version of Chrome). Try scrolling around a little bit:
See the Pen A Simple Responsive Spreadsheet – Final by Robin Rendle (@robinrendle) on CodePen.
Notice how the first column sticks to the left and the heading sticks to the top of the spreadsheet? This lets us scan lots of data without having to keep scrolling to figure out which column or row we’re in — in a lot of interfaces like this it’s pretty easy to get lost.
So how did I go about making this thing? Let’s jump in!
Adding the markup
First we need to add our markup for the table and, just to make sure that this example is as realistic as possible, we’re going to add a lot of rows and columns here:
See the Pen A Simple Responsive Spreadsheet – 1st by Robin Rendle (@robinrendle) on CodePen.
There’s nothing really complex going on. We just have a regular ol’ table with a <thead> and a <tbody>, but we do wrap the whole table in the table-wrapper div which I’ll explain in just a little bit.
Next, we’ll add basic styling to that wrapper element to move it into the center of the page and also give it a max-width. We also need to make sure that the .table-wrapper has overflow set to scroll, although at larger screen sizes we won’t need that just yet:
body {
display: flex;
font-family: -apple-system;
font-size: 90%;
color: #333;
justify-content: center;
}
.table-wrapper {
max-width: 700px;
overflow: scroll;
}
See the Pen A Simple Responsive Spreadsheet – 2nd by Robin Rendle (@robinrendle) on CodePen.
Nifty! Now we can add styles for the first column of our table and the thead element as well as basic styling for each of the table cells:
table {
border: 1px solid #ddd;
border-collapse: collapse;
}
td, th {
white-space: nowrap;
border: 1px solid #ddd;
padding: 20px;
}
See the Pen A Simple Responsive Spreadsheet – 3 by Robin Rendle (@robinrendle) on CodePen.
The problem here is that we’ve now made a pretty inaccessible table; although we can scroll around in the spreadsheet we can’t read which column or row is associated to which bit of data. This can lead to a table that is almost completely illegible and if we were to populate this with real data then it would be even worse:

position: sticky to the rescue!
position: sticky is a wonderfully handy CSS trick that I’ve started experimenting with a great deal lately. It lets you stick child elements to their parent containers so that as you scroll around the child element is always visible. And this is exactly what we need here for the first column and the heading of our table element.
We can use this relatively new feature with CSS like this:
// The heading of our table
th {
background-color: #eee;
position: sticky;
top: -1px;
z-index: 2;
// The first cell that lives in the top left of our spreadsheet
&:first-of-type {
left: 0;
z-index: 3;
}
}
// The first column that we want to stick to the left
tbody tr td:first-of-type {
background-color: #eee;
position: sticky;
left: -1px;
z-index: 1;
}
This z-index values are important here because we want the header to overlap the first left hand column that will also be sticky. However! We also want that empty cell at the top left to overlap both our header and our left hand column, like this:
See the Pen A Simple Responsive Spreadsheet – Final by Robin Rendle (@robinrendle) on CodePen.
But there we have it! A simple responsive spreadsheet where you can view both the heading and the first column no matter where you are in the table. Although, it’s worth noting that your mileage may vary. position: sticky has relatively patchy support right now and so it’s worth thoroughly testing before you start using it. Or you could use something like Stickybits that would act as a lightweight polyfill.
Also, if you need to dig into tables in more depth then we’ve made a rather handy Complete Guide to the Table Element.
An Idea for a Simple Responsive Spreadsheet is a post from CSS-Tricks
Introducing minmax()
Post pobrano z: Introducing minmax()
It’s relatively easy to get lost in all the new features of CSS Grid because there’s just so much to learn and familiarize ourselves with; it’s much easier to learn it chunk by chunk in my opinion.
And so you might already be familiar with Rachel Andrew’s Grid By Example which contains a whole bunch of tutorials with new layout tips and tricks about CSS Grid. But the minmax() tutorial is one small chunk of Grid that you can learn today and thankfully Rachel has made a rather handy two minute long video that dives straight into it.
In fact, it’s pretty darn impressive how many opportunities just one new CSS feature can give us.
Direct Link to Article — Permalink
Introducing minmax() is a post from CSS-Tricks

