Ambi Pur: The Innocent

Post pobrano z: Ambi Pur: The Innocent

Media
Ambi Pur

Ambi Pur, in collaboration with CJ Worx, released a new online film, “THE INNOCENT” under the campaign, “Stink Don’t Drive” talking about stinks that Thai drivers tend not to notice in their car. This is because when they are in their car for a long period of time, they eventually become familiar with smelly car. As a result, their sense of smell is unable to detect any hidden stinks in their car. Ambi Pur and CJ Worx, thus, utilize this insight to remind every Thai drivers of “Stink Don’t Drive” through the online film, THE INNOCENT. The story revolves around an innocent man who has no clue what he has committed. In the end, the film will reveal the answer and in the process, reminding Thai drivers of the stinky car smells that they could be so familiar with.

Advertising Agency:CJ WORX, Bangkok, Thailand
Chief Creative Officer:Saharath Sawadatikom
Creative Director:Natkanate Ruengrujmethakul
Senior Art Director:Perawich Charoenphan
Senior Copywriter:Supachai Pakdeesrisakda
Digital Designer:Sereephap Sourtanglai
Social Media Group Head:Rotjarin Sangteerapanit
Social Media Art Director:Pemika Yosakrai
Senior Social Media Copywriter:Worawut Sangsoon

Ambi Pur: The Innocent

Post pobrano z: Ambi Pur: The Innocent

Media
Ambi Pur

Ambi Pur, in collaboration with CJ Worx, released a new online film, “THE INNOCENT” under the campaign, “Stink Don’t Drive” talking about stinks that Thai drivers tend not to notice in their car. This is because when they are in their car for a long period of time, they eventually become familiar with smelly car. As a result, their sense of smell is unable to detect any hidden stinks in their car. Ambi Pur and CJ Worx, thus, utilize this insight to remind every Thai drivers of “Stink Don’t Drive” through the online film, THE INNOCENT. The story revolves around an innocent man who has no clue what he has committed. In the end, the film will reveal the answer and in the process, reminding Thai drivers of the stinky car smells that they could be so familiar with.

Advertising Agency:CJ WORX, Bangkok, Thailand
Chief Creative Officer:Saharath Sawadatikom
Creative Director:Natkanate Ruengrujmethakul
Senior Art Director:Perawich Charoenphan
Senior Copywriter:Supachai Pakdeesrisakda
Digital Designer:Sereephap Sourtanglai
Social Media Group Head:Rotjarin Sangteerapanit
Social Media Art Director:Pemika Yosakrai
Senior Social Media Copywriter:Worawut Sangsoon

Renault: Zoe Christmas

Post pobrano z: Renault: Zoe Christmas
Print
Renault

Zoe, a new generation electric car by Renault. Our print celebrates the new year by using Santa’s sleigh as a metaphor. Zoe is small. Zoe is powerful. Happy new year!

Zoe. Smaller than a horse, more powerful than 92 horses.

Advertising Agency:4129Grey, Istanbul, Turkey
Ceo:Alemsah Ozturk
CCO:Alemsah Ozturk
Creative Director:Ahmet Terzioglu
Art Director:Emrah Yıldırım, Oguz Can Arslan
Copywriter:Onder Halis
Digital Account Director:Yunus Taskopru
Retoucher:Kubra Okal

Renault: Zoe Christmas

Post pobrano z: Renault: Zoe Christmas
Print
Renault

Zoe, a new generation electric car by Renault. Our print celebrates the new year by using Santa’s sleigh as a metaphor. Zoe is small. Zoe is powerful. Happy new year!

Zoe. Smaller than a horse, more powerful than 92 horses.

Advertising Agency:4129Grey, Istanbul, Turkey
Ceo:Alemsah Ozturk
CCO:Alemsah Ozturk
Creative Director:Ahmet Terzioglu
Art Director:Emrah Yıldırım, Oguz Can Arslan
Copywriter:Onder Halis
Digital Account Director:Yunus Taskopru
Retoucher:Kubra Okal

Is “is” Useful?

Post pobrano z: Is “is” Useful?

God I’m funny.

Anytime we have fairly repetitive selectors that have a common parent, it’s probably a place we can use the :is() pseudo-selector.

Holger Bartel demonstrates like this:

section section h1, section article h1, section aside h1, section nav h1,
article section h1, article article h1, article aside h1, article nav h1,
aside section h1, aside article h1, aside aside h1, aside nav h1,
nav section h1, nav article h1, nav aside h1, nav nav h1 {
  font-size: 20px;
}

Becomes:

:is(section, article, aside, nav)
:is(section, article, aside, nav) h1 {
  font-size: 20px;
}

Adam Argyle demonstrated like this:

#CSS

:is() selector 🎉
the successor to :any() and :matches()

sneak peak into our talk, here's a neat gif I made with XD showing what the :is() selector syntax can do. be excited for Chrome Dev Summit y'all!https://t.co/0r2CcUx9Hv pic.twitter.com/wSuGOsDLvZ

— Adam Argyle (@argyleink) November 7, 2019

MDN has an extra dramatic one:

ol ol ul,     ol ul ul,     ol menu ul,     ol dir ul,
ol ol menu,   ol ul menu,   ol menu menu,   ol dir menu,
ol ol dir,    ol ul dir,    ol menu dir,    ol dir dir,
ul ol ul,     ul ul ul,     ul menu ul,     ul dir ul,
ul ol menu,   ul ul menu,   ul menu menu,   ul dir menu,
ul ol dir,    ul ul dir,    ul menu dir,    ul dir dir,
menu ol ul,   menu ul ul,   menu menu ul,   menu dir ul,
menu ol menu, menu ul menu, menu menu menu, menu dir menu,
menu ol dir,  menu ul dir,  menu menu dir,  menu dir dir,
dir ol ul,    dir ul ul,    dir menu ul,    dir dir ul,
dir ol menu,  dir ul menu,  dir menu menu,  dir dir menu,
dir ol dir,   dir ul dir,   dir menu dir,   dir dir dir {
  list-style-type: square;
}
:is(ol, ul, menu, dir) :is(ol, ul, menu, dir) ul,
:is(ol, ul, menu, dir) :is(ol, ul, menu, dir) menu,
:is(ol, ul, menu, dir) :is(ol, ul, menu, dir) dir {
  list-style-type: square;
}

It’s less code and easier to reason.

Kezz Bracey notes that pairing it with :not() can be nice as well:

:not(article, section, aside) :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
}

Browser support is just starting to get there and polyfilling is hard, so we aren’t at day-to-day no-brainer use levels quite yet. I’d bet it’s not too far away.

The post Is “is” Useful? appeared first on CSS-Tricks.

Gotta Select’em All

Post pobrano z: Gotta Select’em All

I suspect it is not highly known that CSS can control how text is selected. You can do user-select: none; to prevent some text from being selected. That’s probably not terribly good UX in general, but perhaps you use some period (.) characters as decoration or something, I could see preventing those from being selected.

The exact opposite is user-select: all; which forces all the text to be selected in an element. Again, probably somewhat iffy UX. Forcing someone to select all the text is fairly rare on the web and to actively prevent someone from selecting a part of it feels like it’s trying too hard to be helpful to the point that it’s actually hurting.

Anyway, here’s Dag Frode Solberg with more detail.

I forked his demo here to show off a simple scenario where click-to-select might make some level of sense:

See the Pen
css/user-select/4
by Chris Coyier (@chriscoyier)
on CodePen.

If you wanted to implement a situation where you click once to highlight all then stop interfering, you could do that in JavaScript with an click handler than removes itself after the first click.

const cells = document.querySelectorAll("td");

function highlight(event) {
  window.getSelection()
    .selectAllChildren(
      event.target
    );
  event.target.removeEventListener("click", highlight);
}

cells.forEach(cell => {
  cell.addEventListener("click", highlight);
});

Direct Link to ArticlePermalink

The post Gotta Select’em All appeared first on CSS-Tricks.

Microbrowsers are Everywhere

Post pobrano z: Microbrowsers are Everywhere

The word „microbrowser” clearly got my attention. Never heard that before. Colin Bendell defines them as the little parts of other software that do HTTP requests to a URL to generate a preview. Like the little URL preview in iOS messages, WhatsApp, or Slack.

I’m a tiny bit skeptical of the name, because what’s happening is the software making that HTTP request and parsing out a little data to use however it will. I’m not sure I’d call that a browser of any kind, but I take the point.

I agree that these things are mega important.

[…] the real gold for marketers is from word-of-mouth discussions. Those conversations with your friends when you recommend a TV show, a brand of clothing, or share a news report. This is the most valuable kind of marketing.

It reminds me of how tools, like Yoast’s SEO plugin for WordPress, help with managing the look/content of social preview cards.

I could see value in this same kind thing where it shows Slack and WhatsApp and all those tools, even if it’s harder to control.

Direct Link to ArticlePermalink

The post Microbrowsers are Everywhere appeared first on CSS-Tricks.

How to Create a Snowflake Brush in Photoshop

Post pobrano z: How to Create a Snowflake Brush in Photoshop

Final product image
What You’ll Be Creating

In this tutorial, we will create a snowflake Photoshop brush and make overlays for the image using a snow brush Photoshop preset.

If you want to learn these techniques via video, check out our lesson on the Envato Tuts+ YouTube channel:

If you want to learn how to create more similar photo effects or you need to find out how to install Photoshop brushes, check out these:

Tutorial Assets

The following assets were used in the production of this tutorial:

1. How to Create a Snowflake Using Shape Layers

Step 1

Press Control-N to create a new document and use the following settings: 1000 x 1000 px; 300 dpi.

creating a new document

Step 2

Click and select the Rounded Rectangle Tool. Create a shape with the following settings: Width: 30 pxHeight: 720 px.

creating the first element of the snowflake shape

Step 3

After that, we need to create a duplicate of the shape using Right Click > Duplicate.

creating the duplicate of the first shape

Step 4

Hit Control-T and change the Height to 20%.

changing the height of the shape

Step 5

Rotate the shape by 45° while holding Shift.

Rotating the shape layer

Step 6

While holding Shift, move the layer 305 px up and 40 px to the right.

Moving the shape

Step 7

Create a duplicate of the layer, and then go to Edit > Transform > Flip Horizontal.

flipping  the duplicate of the shape

Step 8

Move the duplicate of the shape 80 px to the left.

Moving the duplicate of the shape

Step 9

Select the small shapes while holding Shift and then Right Click > Merge.

merging the small shapes layers

Step 10

Create two duplicates of this new layer, and move each new shape 70 px down.

creating elements of the snowflake

Step 11

Merge all the shape layers and create a duplicate of your new layer. Then rotate it 180° while holding Shift.

creating a duplicate of the main snoflake shape

Step 12

Merge the shapes again, and create two duplicates of the layer. Rotate these duplicates by 60° and -60°, and then merge these shapes into a snowflake.

finishing the snowflake shape

2. How to Create a Snowflake Brush Using the Shape Layers

Step 1

Now we can start to create our brush. Make the background layer Invisible, and then go to Edit > Define Brush Preset, select any name you want to use, and hit the OK button.

defining the first brush preset

Step 2

Now we need to change the brush’s settings to create a complex brush texture. Select the Brush Instrument and hit the Brush Settings icon.

opening the settings of the custom brush

Step 3

Go to the Shape Dynamics panel and set the Size Jitter to 100% and Angle Jitter to 100%.

Changing the shape dynamics

Step 4

Go to the Scattering panel, set the Scatter to 1000%, and put a tick on Both Axes. Our snowflake brush Photoshop settings are almost ready now—we just need to add some dynamics to the opacity of the snow brush Photoshop preset.

changing the scattering settings

Step 5

Go to the Transfer panel and set the Opacity Jitter to 100%.

changing the transfer settings of the brush

Step 6

Click on New Brush Preset to save the settings for the brush.

saving the brush preset settings

3. How to Create an Overlay Using a Custom Snowflake Photoshop Brush

Step 1

Open the image you want to use for overlaying, and then create two layers using Shift-Control-N.

Creating new layers

Step 2

Select the brush, change the size to 250 px, and draw with this brush on the first empty layer to create an overlaying brush texture.

creating the first overlay texture

Step 3

Draw some more snowflakes on the second layer, and finally, to add some motion to the image, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 25 px
creating the second overlay

Awesome Work, You’re Now Done!

Congratulations! You have created snowflake brushes and snow overlays for an image using Photoshop shapes and brush instruments. Here is our final result:

Final result

Looking for some more snowflake or sparkle brush Photoshop items? Check these products from GraphicRiver:

Snowflake Brushes

In this set, you will find 12 greate snowflakes brushes, useful for creating overlays for your backgrounds and photos.

httpsgraphicrivernetitemsnowflakes-brushes6241737

Christmas Snowflakes Brushes

This pack contains 60 hi-res snowflakes brushes with different brush textures. It could be extremely useful for creating Christmas and winter pictures.

httpsgraphicrivernetitemchristmas-snowflakes-brushes14024625

Real Snow Photoshop Brushes

If you want something more realistic, check this 17 snow brush Photoshop pack. This item will work well for adding snow to your images. These brushes could be also useful if you need to create sparkle brush Photoshop presets, as it gives you realistic-looking particles.

httpsgraphicrivernetitemreal-snow-photoshop-brushes19329806

30 Snow Decorations Brushes

This „30 snow decoration brushes” item contains a complex snowflake brush Photoshop pack with different complex shapes, great for creating elements of your Christmas background.

httpsgraphicrivernetitem30-snow-decorations-brushes-2000px6316199

Realistic Snow Crystal Effect

This brushes pack contains six Photoshop snowflake brushes with crystal effect brush textures. A great choice for creating winter and Christmas decoration elements or backgrounds.

httpsgraphicrivernetitem6-snowflakes-realistic-snow-crystal-effect2903339

Want to learn snowflake brush Photoshop techniques, or maybe how to create illustrator vector snowflake shapes? Check these awesome tutorials:

How to Create a Snowflake Brush in Photoshop

Post pobrano z: How to Create a Snowflake Brush in Photoshop

Final product image
What You’ll Be Creating

In this tutorial, we will create a snowflake Photoshop brush and make overlays for the image using a snow brush Photoshop preset.

If you want to learn these techniques via video, check out our lesson on the Envato Tuts+ YouTube channel:

If you want to learn how to create more similar photo effects or you need to find out how to install Photoshop brushes, check out these:

Tutorial Assets

The following assets were used in the production of this tutorial:

1. How to Create a Snowflake Using Shape Layers

Step 1

Press Control-N to create a new document and use the following settings: 1000 x 1000 px; 300 dpi.

creating a new document

Step 2

Click and select the Rounded Rectangle Tool. Create a shape with the following settings: Width: 30 pxHeight: 720 px.

creating the first element of the snowflake shape

Step 3

After that, we need to create a duplicate of the shape using Right Click > Duplicate.

creating the duplicate of the first shape

Step 4

Hit Control-T and change the Height to 20%.

changing the height of the shape

Step 5

Rotate the shape by 45° while holding Shift.

Rotating the shape layer

Step 6

While holding Shift, move the layer 305 px up and 40 px to the right.

Moving the shape

Step 7

Create a duplicate of the layer, and then go to Edit > Transform > Flip Horizontal.

flipping  the duplicate of the shape

Step 8

Move the duplicate of the shape 80 px to the left.

Moving the duplicate of the shape

Step 9

Select the small shapes while holding Shift and then Right Click > Merge.

merging the small shapes layers

Step 10

Create two duplicates of this new layer, and move each new shape 70 px down.

creating elements of the snowflake

Step 11

Merge all the shape layers and create a duplicate of your new layer. Then rotate it 180° while holding Shift.

creating a duplicate of the main snoflake shape

Step 12

Merge the shapes again, and create two duplicates of the layer. Rotate these duplicates by 60° and -60°, and then merge these shapes into a snowflake.

finishing the snowflake shape

2. How to Create a Snowflake Brush Using the Shape Layers

Step 1

Now we can start to create our brush. Make the background layer Invisible, and then go to Edit > Define Brush Preset, select any name you want to use, and hit the OK button.

defining the first brush preset

Step 2

Now we need to change the brush’s settings to create a complex brush texture. Select the Brush Instrument and hit the Brush Settings icon.

opening the settings of the custom brush

Step 3

Go to the Shape Dynamics panel and set the Size Jitter to 100% and Angle Jitter to 100%.

Changing the shape dynamics

Step 4

Go to the Scattering panel, set the Scatter to 1000%, and put a tick on Both Axes. Our snowflake brush Photoshop settings are almost ready now—we just need to add some dynamics to the opacity of the snow brush Photoshop preset.

changing the scattering settings

Step 5

Go to the Transfer panel and set the Opacity Jitter to 100%.

changing the transfer settings of the brush

Step 6

Click on New Brush Preset to save the settings for the brush.

saving the brush preset settings

3. How to Create an Overlay Using a Custom Snowflake Photoshop Brush

Step 1

Open the image you want to use for overlaying, and then create two layers using Shift-Control-N.

Creating new layers

Step 2

Select the brush, change the size to 250 px, and draw with this brush on the first empty layer to create an overlaying brush texture.

creating the first overlay texture

Step 3

Draw some more snowflakes on the second layer, and finally, to add some motion to the image, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 25 px
creating the second overlay

Awesome Work, You’re Now Done!

Congratulations! You have created snowflake brushes and snow overlays for an image using Photoshop shapes and brush instruments. Here is our final result:

Final result

Looking for some more snowflake or sparkle brush Photoshop items? Check these products from GraphicRiver:

Snowflake Brushes

In this set, you will find 12 greate snowflakes brushes, useful for creating overlays for your backgrounds and photos.

httpsgraphicrivernetitemsnowflakes-brushes6241737

Christmas Snowflakes Brushes

This pack contains 60 hi-res snowflakes brushes with different brush textures. It could be extremely useful for creating Christmas and winter pictures.

httpsgraphicrivernetitemchristmas-snowflakes-brushes14024625

Real Snow Photoshop Brushes

If you want something more realistic, check this 17 snow brush Photoshop pack. This item will work well for adding snow to your images. These brushes could be also useful if you need to create sparkle brush Photoshop presets, as it gives you realistic-looking particles.

httpsgraphicrivernetitemreal-snow-photoshop-brushes19329806

30 Snow Decorations Brushes

This „30 snow decoration brushes” item contains a complex snowflake brush Photoshop pack with different complex shapes, great for creating elements of your Christmas background.

httpsgraphicrivernetitem30-snow-decorations-brushes-2000px6316199

Realistic Snow Crystal Effect

This brushes pack contains six Photoshop snowflake brushes with crystal effect brush textures. A great choice for creating winter and Christmas decoration elements or backgrounds.

httpsgraphicrivernetitem6-snowflakes-realistic-snow-crystal-effect2903339

Want to learn snowflake brush Photoshop techniques, or maybe how to create illustrator vector snowflake shapes? Check these awesome tutorials:

How to Create a Snowflake Brush in Photoshop

Post pobrano z: How to Create a Snowflake Brush in Photoshop

Final product image
What You’ll Be Creating

In this tutorial, we will create a snowflake Photoshop brush and make overlays for the image using a snow brush Photoshop preset.

If you want to learn these techniques via video, check out our lesson on the Envato Tuts+ YouTube channel:

If you want to learn how to create more similar photo effects or you need to find out how to install Photoshop brushes, check out these:

Tutorial Assets

The following assets were used in the production of this tutorial:

1. How to Create a Snowflake Using Shape Layers

Step 1

Press Control-N to create a new document and use the following settings: 1000 x 1000 px; 300 dpi.

creating a new document

Step 2

Click and select the Rounded Rectangle Tool. Create a shape with the following settings: Width: 30 pxHeight: 720 px.

creating the first element of the snowflake shape

Step 3

After that, we need to create a duplicate of the shape using Right Click > Duplicate.

creating the duplicate of the first shape

Step 4

Hit Control-T and change the Height to 20%.

changing the height of the shape

Step 5

Rotate the shape by 45° while holding Shift.

Rotating the shape layer

Step 6

While holding Shift, move the layer 305 px up and 40 px to the right.

Moving the shape

Step 7

Create a duplicate of the layer, and then go to Edit > Transform > Flip Horizontal.

flipping  the duplicate of the shape

Step 8

Move the duplicate of the shape 80 px to the left.

Moving the duplicate of the shape

Step 9

Select the small shapes while holding Shift and then Right Click > Merge.

merging the small shapes layers

Step 10

Create two duplicates of this new layer, and move each new shape 70 px down.

creating elements of the snowflake

Step 11

Merge all the shape layers and create a duplicate of your new layer. Then rotate it 180° while holding Shift.

creating a duplicate of the main snoflake shape

Step 12

Merge the shapes again, and create two duplicates of the layer. Rotate these duplicates by 60° and -60°, and then merge these shapes into a snowflake.

finishing the snowflake shape

2. How to Create a Snowflake Brush Using the Shape Layers

Step 1

Now we can start to create our brush. Make the background layer Invisible, and then go to Edit > Define Brush Preset, select any name you want to use, and hit the OK button.

defining the first brush preset

Step 2

Now we need to change the brush’s settings to create a complex brush texture. Select the Brush Instrument and hit the Brush Settings icon.

opening the settings of the custom brush

Step 3

Go to the Shape Dynamics panel and set the Size Jitter to 100% and Angle Jitter to 100%.

Changing the shape dynamics

Step 4

Go to the Scattering panel, set the Scatter to 1000%, and put a tick on Both Axes. Our snowflake brush Photoshop settings are almost ready now—we just need to add some dynamics to the opacity of the snow brush Photoshop preset.

changing the scattering settings

Step 5

Go to the Transfer panel and set the Opacity Jitter to 100%.

changing the transfer settings of the brush

Step 6

Click on New Brush Preset to save the settings for the brush.

saving the brush preset settings

3. How to Create an Overlay Using a Custom Snowflake Photoshop Brush

Step 1

Open the image you want to use for overlaying, and then create two layers using Shift-Control-N.

Creating new layers

Step 2

Select the brush, change the size to 250 px, and draw with this brush on the first empty layer to create an overlaying brush texture.

creating the first overlay texture

Step 3

Draw some more snowflakes on the second layer, and finally, to add some motion to the image, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 25 px
creating the second overlay

Awesome Work, You’re Now Done!

Congratulations! You have created snowflake brushes and snow overlays for an image using Photoshop shapes and brush instruments. Here is our final result:

Final result

Looking for some more snowflake or sparkle brush Photoshop items? Check these products from GraphicRiver:

Snowflake Brushes

In this set, you will find 12 greate snowflakes brushes, useful for creating overlays for your backgrounds and photos.

httpsgraphicrivernetitemsnowflakes-brushes6241737

Christmas Snowflakes Brushes

This pack contains 60 hi-res snowflakes brushes with different brush textures. It could be extremely useful for creating Christmas and winter pictures.

httpsgraphicrivernetitemchristmas-snowflakes-brushes14024625

Real Snow Photoshop Brushes

If you want something more realistic, check this 17 snow brush Photoshop pack. This item will work well for adding snow to your images. These brushes could be also useful if you need to create sparkle brush Photoshop presets, as it gives you realistic-looking particles.

httpsgraphicrivernetitemreal-snow-photoshop-brushes19329806

30 Snow Decorations Brushes

This „30 snow decoration brushes” item contains a complex snowflake brush Photoshop pack with different complex shapes, great for creating elements of your Christmas background.

httpsgraphicrivernetitem30-snow-decorations-brushes-2000px6316199

Realistic Snow Crystal Effect

This brushes pack contains six Photoshop snowflake brushes with crystal effect brush textures. A great choice for creating winter and Christmas decoration elements or backgrounds.

httpsgraphicrivernetitem6-snowflakes-realistic-snow-crystal-effect2903339

Want to learn snowflake brush Photoshop techniques, or maybe how to create illustrator vector snowflake shapes? Check these awesome tutorials:

Agregator najlepszych postów o designie, webdesignie, cssie i Internecie