UX Considerations for Web Sharing

Post pobrano z: UX Considerations for Web Sharing

From trashy clickbait sites to the most august of publications, share buttons have long been ubiquitous across the web. And yet it is arguable that these buttons aren’t needed. All mobile browsers — Firefox, Edge, Safari, Chrome, Opera Mini, UC Browser, Samsung Internet — make it easy to share content directly from their native platforms. They all feature a built-in button to bring up a „share sheet” — a native dialog for sharing content. You can also highlight text to share an excerpt along with the link.

A collage of various share buttons from sites across the web.
The ubiquitous share button, as seen at the BBC, Wired, BuzzFeed, PBS, The Wall Street Journal and elsewhere.

Given that users can share by default, are custom buttons taking up unnecessary space and potentially distracting users from more important actions? And do people actually use them?

A (unscientific) poll of 12,500 CSS-Tricks readers found that 60% of its readers never used custom share buttons. That was in 2014 and native methods for sharing have only improved since then. A more recent poll from Smashing Magazine found much the same thing.

How often do you use social sharing buttons on your mobile device?

— Smashing Magazine (@smashingmag) August 23, 2019

Users come with varying technological proficiency. Not everybody knows their way around there own mobile phone or browser meaning some users would struggle to find the native share button. It’s also worth thinking about what happens on desktop. Desktop browsers generally (with Safari as one exception) offer no built-in sharing functionality — users are left to copy and paste the link into their social network of choice.

Some data suggests that clickthrough rates are relatively low. However, clickthrough rates aren’t the best metric. For technically savvy users aware of how to share without assistance, the buttons can still act as a prompt — a visual reminder to share the content. Regardless of how the link is ultimately shared, a custom share button can still provide a cue, or a little nudge to elicit the share. For this reason, measuring click rates on the buttons themselves may not be entirely fair — people may see the button, feel encouraged to share the content, but then use the browsers built-in share button. A better metric would be whether shares increase after the addition of share buttons, regardless of how they’re shared.

We’ve established that having a share button is probably useful. Websites have traditionally featured separate buttons for two or three of the most popular social networks. With a new-ish API, we can do better. While browser support is currently limited to Chrome for Android and Safari, those two browsers alone make up the vast majority of web traffic.

The Web Share API

The Web Share API offers a simple way to bring up a share sheet — the native bit of UI that’s used for sharing. Rather than offering a standard list of popular social networks to share to (which the user may or may not be a member of), the options of the share sheet are catered to the individual. Only applications they have installed on their phone will be shown. Rather than a uniform list, the user will be shown only the option to share on networks they actually use — whether that be Twitter and Facebook or something more esoteric.

Not showing the user irrelevant networks is obviously a good thing. Unfortunately, this is counterbalanced by the fact that some users visit social media websites rather than downloading them as apps. If you use twitter.com, for example, but haven’t installed the Twitter application natively, then Twitter will not be listed as a sharing option. Currently, only native apps are listed but PWAs will be supported in the future.

websharebutton.addEventListener("click", function() {
  navigator.share({
    url: document.URL,
    title: document.title,
    text: "lorem ipsum..."
  });
});

The API requires user interaction (such as a button click as shown in the above code) to bring up the share sheet. This means you can’t do something obnoxious like bring up the share sheet on page load.

The text might be a short excerpt or a summation of the page. The title is used when sharing via email but will be ignored when sharing to social networks.

Comparing the share sheets of Android and iPhone.
Native sharesheet dialog on Android (left) and iOS (right). The apps listed here are dependent on which apps you have installed on your device.

Sharing on desktop

While we are pretty happy with the Web Share API for mobile, its implementation for desktop is currently limited to Safari and leaves a lot to be desired. (Chrome is planning to ship support eventually, but there is no clear timescale).

The provided options — Mail, Message, Airdrop, Notes, Reminders — omit social networks. Native apps for Twitter and Facebook are common on phones, but rare on other devices.

Instead of relying on the Web Share API for desktop, its relatively common to have a generic share button that opens a modal that offers more multiple sharing options. This is the approach adopted by YouTube, Instagram and Pinterest, among others.

Comparing Instagram and YouTube share options on desktop.
Instagram (left) compared to YouTube (right)

Facebook and Twitter account for the vast majority of sharing online, so offering an exhaustive list of social networks to choose from doesn’t feel necessary. (An option for Instagram would be ideal, but it is currently not technically possible to share to Instagram from a website.) It is also relatively common to include an email option. For anyone using a web-based email client like gmail.com or outlook.com rather than the operating system’s default email application, this is problematic.

Many people make use of web-based email client’s gmail.com or outlook.com. A share-by-email button will open the operating system’s default email application. Users will be greeted by a prompt to set this up, which is far more effort than simply copy and pasting the URL. It is therefore advisable to omit the email option and instead include a button to copy the link to the clipboard, which is only infinitesimally easier than doing a copy in the address bar with the keyboard.

Screenshot of the share options offered by Mac's email application, including iCloud, Exchange, Google, Yahoo and AOL.
A prompt to set up the default email application on Mac

Prompting the user to set up an application they never use is far more effort than simply copy and pasting a URL into my preferred email client.

Choosing a share icon

Grid of various share icons in different variations.
There have been plenty of other share icons over the years.

There is no universal standardized share icon — far from it. While the Android symbol might not be recognizable to long-term iPhone users, the iOS icon is problematic. It is identical to the download icon — but with the arrow in the opposite direction, which would imply uploading, not sharing.

Where I work at giffgaff, we polled 69 of our colleagues on whether they recognized the current iOS icon or the current Android icon as representing sharing. The Android icon was an overwhelming winner with 58 votes. While our sample did include iPhone users, some long-term iPhone users may not be familiar with this symbol (even though it has been adopted by some websites). Then there is the forward arrow, an icon that was abandoned by Apple, but adopted elsewhere. Reminiscent of the icon for forwarding an email, this symbol has been made recognizable by its usage on youtube.com. The icon was adopted by Microsoft in 2017 after A/B testing found a high level of familiarity.

It’s also possible to take a contextual approach. Twitter will change the icon used depending on the platform of the user. This approach is also taken by the icon library Ionicons.

Showing the same tweet on both Android and iOS
Android (left) and Mac/iOS (right)

Given the lack of a universally understood icon, this seems like a good approach. Alternatively, make sure to include a label alongside the icon to really spell things out to the user.

The post UX Considerations for Web Sharing appeared first on CSS-Tricks.

Table with Expando Rows

Post pobrano z: Table with Expando Rows

„Expando Rows” is a concept where multiple related rows in a <table> are collapsed until you open them. You’d call that „progressive disclosure” in interaction design parlance.

After all these years on CSS-Tricks, I have a little better eye for what the accessibility concerns of a design/interactivity feature are. I’m not entirely sure how I would have approached this problem myself, but there is a good chance that whatever I would have tried wouldn’t have hit the bullseye with accessibility.

That’s why I’m extra happy when someone like Adrian Roselli tackles problems like this, because the accessibility is handled right up front (see the videos in all the major screen readers).

I feel the same way when we get demos from Scott O’Hara, Lindsey Kopacz, and Hedyon Pickering.

See the Pen
Table with Expando Rows
by Adrian Roselli (@aardrian)
on CodePen.

Direct Link to ArticlePermalink

The post Table with Expando Rows appeared first on CSS-Tricks.

How to Create an Animated Text Effect Photoshop Action

Post pobrano z: How to Create an Animated Text Effect Photoshop Action

What You’ll Be Creating

In this tutorial, we will create a VHS-style 3D Photoshop effect for text layers using smart filters, gradient fills, and video overlays.

You can find plenty of Photoshop text actions on GraphicRiver, and if you want to create this 3D text effect in just a few simple clicks, then check my Animated VHS Text Effect Action created the same way.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

Tutorial Assets

1. How to Prepare the Document

Step 1

Press Control-N to create a new document and use the following settings: 

  • 1920 x 1080 px
  • 300 dpi
Creating a new document in photoshop

Step 2

Create a new layer using Shift-Control-N and name it „placeholder”.

Creating a new layer

Step 3

Right-Click on the layer and select Convert to Smart Object.

Converting image to smart object

Step 4

After that, Right-Click > Edit Contents on the „placeholder” layer.

opening the smart object

Step 5

Click T to open the Horizontal Type Tool and create any text using the Bebas Neue font with a size of 84 pt. After that, close and save the placeholder.

Creating a text layer

Step 6

Right-Click on the smart object, select Duplicate, and create two duplicates of the layer.

Creating duplicates of the layer

Step 7

Rename the layer to „text” and „glow” and make the first smart object Invisible.

Renaming the layers

Step 8

Select the background layer and Fill it with #141414 color using Shift-F5.

Filling the backgrond with the color

2. How to Create VHS Text Effects

Step 1

Now let’s start to create our text effects. Select the „Text” layer and then go to Filter > Blur > Gaussian Blur and set the Radius to 2 px.

Creating gaussian blur effect

Step 2

After that, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 60 px
Creating motion blur effect

Step 3

Go to Filter > Distortion > Wave and use the following settings: 

  • Number of Generators: 1
  • Wavelength: 1 and 298
  • Amplitude: 1 and 6
  • Type: Sine
Creating Wave Effect

Step 4

Now we need to create layer style effects. Double Click on the Layer and then go to Gradient Overlay.

Creating a gradient overlay

Step 5

Use the following settings for your gradient:  

  • Blend Mode: Normal
  • Opacity: 100%
  • Angle: -180°

Set the following colors for your gradient: #fc3d4f ; #fd7335 ; #f57c21.

Setting up the gradient

Step 6

After that, you need to add Gaussian Blur and Wave Effect with the same parameters to the „glow” layer.

Adding the smart filters to the second layer

Step 7

Double-Click on the layer and add an Outer Glow effect with the same gradient as we use before and the following settings: 

  • Blend Mode: Screen
  • Opacity: 100%
  • Spread: 4%
  • Size: 12 px
Adding the outer glow effect

Step 8

Change the Fill setting of the layer to 0%.

changing the fill setting of  the layer

Step 9

Select your smart objects while holding Shift, and then hit the Create a New Group icon and name it „Main Text”.

creating first group of the layer

Step 10

Create two duplicates of the group and name them „Color Shift 01” and „Color Shift 02”.

creating the duplicates of the group of layers

Step 11

Double-Click on the „Color Shift 01” layer and Uncheck the Green and Blue color channels.

Creating the first color shift effect

Step 12

Double-Click on the „Color Shift 02” layer and Uncheck the Red and Green color channels.

Creating the second color shift effect

Step 13

Move the „Color Shift 01” group of layers 4 px to the left while holding Shift.

Moving the group of layers

Step 14

Move the „Color Shift 02” group of layers 8 px to the right while holding Shift.

Moving the second group of layers

3. How to Create Overlaying Elements

Step 1

Now we need to create „TV Lines” overlay textures. Create a new layer using Shift-Control-N and Fill it with #282828 color.

Creating a new layer

Step 2

Go to Filter > Filter Gallery > Sketch and select Halftone Pattern. Use the following settings: 

  • Size: 2
  • Contrast: 50
Adding a halftone effect to the layer

Step 3

Create a duplicate of the layer and then move it 1080 px up while holding Shift.

Creating a duplicate of the layer

Step 4

After that, you need to select both of the layers and move them 1080 px up again.

Moving the layer

Step 5

Create another duplicate of the „layer 1” and then move it 1080 px down.

Moving the last layer

Step 6

Select all three layers and Right Click > Merge Layers. Name it „TV Lines”.

Merging the layers

Step 7

Change the Blending Mode of the layer to Overlay and the Opacity to 25%.

changing the blending mode and opacity of the layer

Step 8

Go to File > Place and then select the MP4 file from the attachment of this tutorial. Resize and rotate it to the borders of the document.

Placing the video overlay

Step 9

Change the Blending Mode of the layer to Screen.

Changing the blending mode of the layer

Step 10

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Video Overlays”.

creating a group of the layers

Step 11

Now we need to create gradient overlays for our video. Go to Layer > New Fill Layer > Gradient and create two gradients. Name them „Light Leaks 01” and „Light Leaks 02”.

creating the gradient fill layers

Step 12

Double-Click on the first gradient fill in the Layers panel and use the following settings: 

  • Style: Linear
  • Angle: -35°
  • Scale: 232%

setting up the first gradient fill

Step 13

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #ff7511Location: 0%; Opacity: 100%
  • Location: 35%; Opacity: 82%
  • Location: 51%; Opacity: 0%
  • Color: #e90f43Location: 61%;
  • Location: 67%; Opacity: 82%
  • Color: #f3005eLocation: 100%; Opacity: 100%
Setting up the colors of the first gradient

Step 14

Double-Click on the second gradient fill in the layer panel and use the following settings: 

  • Style: Linear
  • Angle: -171°
  • Scale: 232%
setting up the second gradient fill

Step 15

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #315934Location: 0%; Opacity: 100%
  • Color: #ac9102Location: 100%; Opacity: 100%
Setting up the colors of the second gradient

Step 16

Change the Blending Modes of both gradients to Color Dodge.

Changing the blending modes of the layers

Step 17

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Light Leaks”.

creating the group of the gradients

4. How to Create the Animation of the Layers

Step 1

Now we are ready to start creating our animation. Go to Window > Timeline and click on the Create Video Timeline icon.

creating a timeline

Step 2

Reduce the duration of the timeline to 05:00 by moving the icon shown below.

changing the duration of the timeline

Step 3

Now you need to create the first keyframe. Select the „Text” layer and click on the Timer icon near Transform to create the first Keyframe.

creating the first keyframe

Step 4

Move the Time Indicator to 0:00:00:10 and then move the layer 15 px up while holding Shift.

creating the second keyframe

Step 5

Move the Time Indicator to 0:00:00:20 and then move the layer 15 px down while holding Shift.

creating the second keyframe

Step 6

Select the keyframes we just created while holding Shift and then Right-Click > Copy.

copying the keyframes

Step 7

Move the Time Indicator to 0:00:01:00 and then hit the Keyframe icon.

creating an empty keyframe

Step 8

After that, Right-Click > Paste on the last keyframe to duplicate the keyframes we created before.

pasting the keyframes

Step 9

Create duplicates of the keyframes until you fill the whole timeline.

create the animation for the first layer

Step 10

Select all the keyframes of the „text” layer and paste them for the „glow” layer.

creating the animation for the second text layer

Step 11

Select the „TV Lines” layer and click on the Timer icon near Position to create the first Keyframe.

creating the first keyframe for the tv lines texture

Step 12

Move the Time Indicator to 0:00:05:00 and move the layer 2160 px down while holding Shift.

creating the last keyframe for the tv lines texture

Step 13

Select the „Light Leaks 01” layer in the timeline panel and reduce the size of the clip to Start: 02:00 and Duration: 02:00.

Reducing the time of the clip

Step 14

Select the „Light Leaks 02” layer in the timeline panel and reduce the size of the clip to Start: 03:00 and Duration: 02:00.

Reducing the time of the clip

Step 15

Click on the Transitions icon and select Fade.

creating the fade effect

Step 16

Drag and drop the Fade transition to the start and the end of the „light leak 01”.

applying the fade effect to the first gradient

Step 17

Right-Click and change the duration of both Fade transitions to 0.97 s.

changing the duration of the fade effect

Step 18

After that, you need to apply the same transition with the same duration to the second „light leaks” layer.

creating the fade transitions for the second light leaks

Step 19

Create a new layer using Shift-Control-N, and then fill it with black color and name it „Fade In/Out”.

Creating a fade inout effect

Step 20

Change the Fill of the layer to 0%.

changing the fill setting of the layer

Step 21

And finally, Drag and drop the Fade With Black transition to the start and the end of the „Fade In/Out” layer.

Creating fade in and out effect

5. How to Render the Animation as a Video

Step 1

Our animation is now ready for rendering. Click on the icon in the upper right corner and select Render Video.  

opening the render panel

Step 2

Set the following settings in the Render Video panel: 

  • Format: H.264
  • Size: Document Size
  • Range: All Frames
setting up the render options

Awesome Work, You’re Now Done!

Your video is ready! In this manner, we can create an animated VHS text effect in Adobe Photoshop using the smart objects, gradient fills, filters and video overlays.

I hope you enjoyed this tutorial, and if you want to create this effect using Photoshop actions, you can check my Animated VHS Text Effect Action on GraphicRiver, which will help you to create this text effect in a few simple clicks.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

How to Create an Animated Text Effect Photoshop Action

Post pobrano z: How to Create an Animated Text Effect Photoshop Action

What You’ll Be Creating

In this tutorial, we will create a VHS-style 3D Photoshop effect for text layers using smart filters, gradient fills, and video overlays.

You can find plenty of Photoshop text actions on GraphicRiver, and if you want to create this 3D text effect in just a few simple clicks, then check my Animated VHS Text Effect Action created the same way.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

Tutorial Assets

1. How to Prepare the Document

Step 1

Press Control-N to create a new document and use the following settings: 

  • 1920 x 1080 px
  • 300 dpi
Creating a new document in photoshop

Step 2

Create a new layer using Shift-Control-N and name it „placeholder”.

Creating a new layer

Step 3

Right-Click on the layer and select Convert to Smart Object.

Converting image to smart object

Step 4

After that, Right-Click > Edit Contents on the „placeholder” layer.

opening the smart object

Step 5

Click T to open the Horizontal Type Tool and create any text using the Bebas Neue font with a size of 84 pt. After that, close and save the placeholder.

Creating a text layer

Step 6

Right-Click on the smart object, select Duplicate, and create two duplicates of the layer.

Creating duplicates of the layer

Step 7

Rename the layer to „text” and „glow” and make the first smart object Invisible.

Renaming the layers

Step 8

Select the background layer and Fill it with #141414 color using Shift-F5.

Filling the backgrond with the color

2. How to Create VHS Text Effects

Step 1

Now let’s start to create our text effects. Select the „Text” layer and then go to Filter > Blur > Gaussian Blur and set the Radius to 2 px.

Creating gaussian blur effect

Step 2

After that, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 60 px
Creating motion blur effect

Step 3

Go to Filter > Distortion > Wave and use the following settings: 

  • Number of Generators: 1
  • Wavelength: 1 and 298
  • Amplitude: 1 and 6
  • Type: Sine
Creating Wave Effect

Step 4

Now we need to create layer style effects. Double Click on the Layer and then go to Gradient Overlay.

Creating a gradient overlay

Step 5

Use the following settings for your gradient:  

  • Blend Mode: Normal
  • Opacity: 100%
  • Angle: -180°

Set the following colors for your gradient: #fc3d4f ; #fd7335 ; #f57c21.

Setting up the gradient

Step 6

After that, you need to add Gaussian Blur and Wave Effect with the same parameters to the „glow” layer.

Adding the smart filters to the second layer

Step 7

Double-Click on the layer and add an Outer Glow effect with the same gradient as we use before and the following settings: 

  • Blend Mode: Screen
  • Opacity: 100%
  • Spread: 4%
  • Size: 12 px
Adding the outer glow effect

Step 8

Change the Fill setting of the layer to 0%.

changing the fill setting of  the layer

Step 9

Select your smart objects while holding Shift, and then hit the Create a New Group icon and name it „Main Text”.

creating first group of the layer

Step 10

Create two duplicates of the group and name them „Color Shift 01” and „Color Shift 02”.

creating the duplicates of the group of layers

Step 11

Double-Click on the „Color Shift 01” layer and Uncheck the Green and Blue color channels.

Creating the first color shift effect

Step 12

Double-Click on the „Color Shift 02” layer and Uncheck the Red and Green color channels.

Creating the second color shift effect

Step 13

Move the „Color Shift 01” group of layers 4 px to the left while holding Shift.

Moving the group of layers

Step 14

Move the „Color Shift 02” group of layers 8 px to the right while holding Shift.

Moving the second group of layers

3. How to Create Overlaying Elements

Step 1

Now we need to create „TV Lines” overlay textures. Create a new layer using Shift-Control-N and Fill it with #282828 color.

Creating a new layer

Step 2

Go to Filter > Filter Gallery > Sketch and select Halftone Pattern. Use the following settings: 

  • Size: 2
  • Contrast: 50
Adding a halftone effect to the layer

Step 3

Create a duplicate of the layer and then move it 1080 px up while holding Shift.

Creating a duplicate of the layer

Step 4

After that, you need to select both of the layers and move them 1080 px up again.

Moving the layer

Step 5

Create another duplicate of the „layer 1” and then move it 1080 px down.

Moving the last layer

Step 6

Select all three layers and Right Click > Merge Layers. Name it „TV Lines”.

Merging the layers

Step 7

Change the Blending Mode of the layer to Overlay and the Opacity to 25%.

changing the blending mode and opacity of the layer

Step 8

Go to File > Place and then select the MP4 file from the attachment of this tutorial. Resize and rotate it to the borders of the document.

Placing the video overlay

Step 9

Change the Blending Mode of the layer to Screen.

Changing the blending mode of the layer

Step 10

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Video Overlays”.

creating a group of the layers

Step 11

Now we need to create gradient overlays for our video. Go to Layer > New Fill Layer > Gradient and create two gradients. Name them „Light Leaks 01” and „Light Leaks 02”.

creating the gradient fill layers

Step 12

Double-Click on the first gradient fill in the Layers panel and use the following settings: 

  • Style: Linear
  • Angle: -35°
  • Scale: 232%

setting up the first gradient fill

Step 13

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #ff7511Location: 0%; Opacity: 100%
  • Location: 35%; Opacity: 82%
  • Location: 51%; Opacity: 0%
  • Color: #e90f43Location: 61%;
  • Location: 67%; Opacity: 82%
  • Color: #f3005eLocation: 100%; Opacity: 100%
Setting up the colors of the first gradient

Step 14

Double-Click on the second gradient fill in the layer panel and use the following settings: 

  • Style: Linear
  • Angle: -171°
  • Scale: 232%
setting up the second gradient fill

Step 15

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #315934Location: 0%; Opacity: 100%
  • Color: #ac9102Location: 100%; Opacity: 100%
Setting up the colors of the second gradient

Step 16

Change the Blending Modes of both gradients to Color Dodge.

Changing the blending modes of the layers

Step 17

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Light Leaks”.

creating the group of the gradients

4. How to Create the Animation of the Layers

Step 1

Now we are ready to start creating our animation. Go to Window > Timeline and click on the Create Video Timeline icon.

creating a timeline

Step 2

Reduce the duration of the timeline to 05:00 by moving the icon shown below.

changing the duration of the timeline

Step 3

Now you need to create the first keyframe. Select the „Text” layer and click on the Timer icon near Transform to create the first Keyframe.

creating the first keyframe

Step 4

Move the Time Indicator to 0:00:00:10 and then move the layer 15 px up while holding Shift.

creating the second keyframe

Step 5

Move the Time Indicator to 0:00:00:20 and then move the layer 15 px down while holding Shift.

creating the second keyframe

Step 6

Select the keyframes we just created while holding Shift and then Right-Click > Copy.

copying the keyframes

Step 7

Move the Time Indicator to 0:00:01:00 and then hit the Keyframe icon.

creating an empty keyframe

Step 8

After that, Right-Click > Paste on the last keyframe to duplicate the keyframes we created before.

pasting the keyframes

Step 9

Create duplicates of the keyframes until you fill the whole timeline.

create the animation for the first layer

Step 10

Select all the keyframes of the „text” layer and paste them for the „glow” layer.

creating the animation for the second text layer

Step 11

Select the „TV Lines” layer and click on the Timer icon near Position to create the first Keyframe.

creating the first keyframe for the tv lines texture

Step 12

Move the Time Indicator to 0:00:05:00 and move the layer 2160 px down while holding Shift.

creating the last keyframe for the tv lines texture

Step 13

Select the „Light Leaks 01” layer in the timeline panel and reduce the size of the clip to Start: 02:00 and Duration: 02:00.

Reducing the time of the clip

Step 14

Select the „Light Leaks 02” layer in the timeline panel and reduce the size of the clip to Start: 03:00 and Duration: 02:00.

Reducing the time of the clip

Step 15

Click on the Transitions icon and select Fade.

creating the fade effect

Step 16

Drag and drop the Fade transition to the start and the end of the „light leak 01”.

applying the fade effect to the first gradient

Step 17

Right-Click and change the duration of both Fade transitions to 0.97 s.

changing the duration of the fade effect

Step 18

After that, you need to apply the same transition with the same duration to the second „light leaks” layer.

creating the fade transitions for the second light leaks

Step 19

Create a new layer using Shift-Control-N, and then fill it with black color and name it „Fade In/Out”.

Creating a fade inout effect

Step 20

Change the Fill of the layer to 0%.

changing the fill setting of the layer

Step 21

And finally, Drag and drop the Fade With Black transition to the start and the end of the „Fade In/Out” layer.

Creating fade in and out effect

5. How to Render the Animation as a Video

Step 1

Our animation is now ready for rendering. Click on the icon in the upper right corner and select Render Video.  

opening the render panel

Step 2

Set the following settings in the Render Video panel: 

  • Format: H.264
  • Size: Document Size
  • Range: All Frames
setting up the render options

Awesome Work, You’re Now Done!

Your video is ready! In this manner, we can create an animated VHS text effect in Adobe Photoshop using the smart objects, gradient fills, filters and video overlays.

I hope you enjoyed this tutorial, and if you want to create this effect using Photoshop actions, you can check my Animated VHS Text Effect Action on GraphicRiver, which will help you to create this text effect in a few simple clicks.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

How to Create an Animated Text Effect Photoshop Action

Post pobrano z: How to Create an Animated Text Effect Photoshop Action

What You’ll Be Creating

In this tutorial, we will create a VHS-style 3D Photoshop effect for text layers using smart filters, gradient fills, and video overlays.

You can find plenty of Photoshop text actions on GraphicRiver, and if you want to create this 3D text effect in just a few simple clicks, then check my Animated VHS Text Effect Action created the same way.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

Tutorial Assets

1. How to Prepare the Document

Step 1

Press Control-N to create a new document and use the following settings: 

  • 1920 x 1080 px
  • 300 dpi
Creating a new document in photoshop

Step 2

Create a new layer using Shift-Control-N and name it „placeholder”.

Creating a new layer

Step 3

Right-Click on the layer and select Convert to Smart Object.

Converting image to smart object

Step 4

After that, Right-Click > Edit Contents on the „placeholder” layer.

opening the smart object

Step 5

Click T to open the Horizontal Type Tool and create any text using the Bebas Neue font with a size of 84 pt. After that, close and save the placeholder.

Creating a text layer

Step 6

Right-Click on the smart object, select Duplicate, and create two duplicates of the layer.

Creating duplicates of the layer

Step 7

Rename the layer to „text” and „glow” and make the first smart object Invisible.

Renaming the layers

Step 8

Select the background layer and Fill it with #141414 color using Shift-F5.

Filling the backgrond with the color

2. How to Create VHS Text Effects

Step 1

Now let’s start to create our text effects. Select the „Text” layer and then go to Filter > Blur > Gaussian Blur and set the Radius to 2 px.

Creating gaussian blur effect

Step 2

After that, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 60 px
Creating motion blur effect

Step 3

Go to Filter > Distortion > Wave and use the following settings: 

  • Number of Generators: 1
  • Wavelength: 1 and 298
  • Amplitude: 1 and 6
  • Type: Sine
Creating Wave Effect

Step 4

Now we need to create layer style effects. Double Click on the Layer and then go to Gradient Overlay.

Creating a gradient overlay

Step 5

Use the following settings for your gradient:  

  • Blend Mode: Normal
  • Opacity: 100%
  • Angle: -180°

Set the following colors for your gradient: #fc3d4f ; #fd7335 ; #f57c21.

Setting up the gradient

Step 6

After that, you need to add Gaussian Blur and Wave Effect with the same parameters to the „glow” layer.

Adding the smart filters to the second layer

Step 7

Double-Click on the layer and add an Outer Glow effect with the same gradient as we use before and the following settings: 

  • Blend Mode: Screen
  • Opacity: 100%
  • Spread: 4%
  • Size: 12 px
Adding the outer glow effect

Step 8

Change the Fill setting of the layer to 0%.

changing the fill setting of  the layer

Step 9

Select your smart objects while holding Shift, and then hit the Create a New Group icon and name it „Main Text”.

creating first group of the layer

Step 10

Create two duplicates of the group and name them „Color Shift 01” and „Color Shift 02”.

creating the duplicates of the group of layers

Step 11

Double-Click on the „Color Shift 01” layer and Uncheck the Green and Blue color channels.

Creating the first color shift effect

Step 12

Double-Click on the „Color Shift 02” layer and Uncheck the Red and Green color channels.

Creating the second color shift effect

Step 13

Move the „Color Shift 01” group of layers 4 px to the left while holding Shift.

Moving the group of layers

Step 14

Move the „Color Shift 02” group of layers 8 px to the right while holding Shift.

Moving the second group of layers

3. How to Create Overlaying Elements

Step 1

Now we need to create „TV Lines” overlay textures. Create a new layer using Shift-Control-N and Fill it with #282828 color.

Creating a new layer

Step 2

Go to Filter > Filter Gallery > Sketch and select Halftone Pattern. Use the following settings: 

  • Size: 2
  • Contrast: 50
Adding a halftone effect to the layer

Step 3

Create a duplicate of the layer and then move it 1080 px up while holding Shift.

Creating a duplicate of the layer

Step 4

After that, you need to select both of the layers and move them 1080 px up again.

Moving the layer

Step 5

Create another duplicate of the „layer 1” and then move it 1080 px down.

Moving the last layer

Step 6

Select all three layers and Right Click > Merge Layers. Name it „TV Lines”.

Merging the layers

Step 7

Change the Blending Mode of the layer to Overlay and the Opacity to 25%.

changing the blending mode and opacity of the layer

Step 8

Go to File > Place and then select the MP4 file from the attachment of this tutorial. Resize and rotate it to the borders of the document.

Placing the video overlay

Step 9

Change the Blending Mode of the layer to Screen.

Changing the blending mode of the layer

Step 10

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Video Overlays”.

creating a group of the layers

Step 11

Now we need to create gradient overlays for our video. Go to Layer > New Fill Layer > Gradient and create two gradients. Name them „Light Leaks 01” and „Light Leaks 02”.

creating the gradient fill layers

Step 12

Double-Click on the first gradient fill in the Layers panel and use the following settings: 

  • Style: Linear
  • Angle: -35°
  • Scale: 232%

setting up the first gradient fill

Step 13

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #ff7511Location: 0%; Opacity: 100%
  • Location: 35%; Opacity: 82%
  • Location: 51%; Opacity: 0%
  • Color: #e90f43Location: 61%;
  • Location: 67%; Opacity: 82%
  • Color: #f3005eLocation: 100%; Opacity: 100%
Setting up the colors of the first gradient

Step 14

Double-Click on the second gradient fill in the layer panel and use the following settings: 

  • Style: Linear
  • Angle: -171°
  • Scale: 232%
setting up the second gradient fill

Step 15

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #315934Location: 0%; Opacity: 100%
  • Color: #ac9102Location: 100%; Opacity: 100%
Setting up the colors of the second gradient

Step 16

Change the Blending Modes of both gradients to Color Dodge.

Changing the blending modes of the layers

Step 17

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Light Leaks”.

creating the group of the gradients

4. How to Create the Animation of the Layers

Step 1

Now we are ready to start creating our animation. Go to Window > Timeline and click on the Create Video Timeline icon.

creating a timeline

Step 2

Reduce the duration of the timeline to 05:00 by moving the icon shown below.

changing the duration of the timeline

Step 3

Now you need to create the first keyframe. Select the „Text” layer and click on the Timer icon near Transform to create the first Keyframe.

creating the first keyframe

Step 4

Move the Time Indicator to 0:00:00:10 and then move the layer 15 px up while holding Shift.

creating the second keyframe

Step 5

Move the Time Indicator to 0:00:00:20 and then move the layer 15 px down while holding Shift.

creating the second keyframe

Step 6

Select the keyframes we just created while holding Shift and then Right-Click > Copy.

copying the keyframes

Step 7

Move the Time Indicator to 0:00:01:00 and then hit the Keyframe icon.

creating an empty keyframe

Step 8

After that, Right-Click > Paste on the last keyframe to duplicate the keyframes we created before.

pasting the keyframes

Step 9

Create duplicates of the keyframes until you fill the whole timeline.

create the animation for the first layer

Step 10

Select all the keyframes of the „text” layer and paste them for the „glow” layer.

creating the animation for the second text layer

Step 11

Select the „TV Lines” layer and click on the Timer icon near Position to create the first Keyframe.

creating the first keyframe for the tv lines texture

Step 12

Move the Time Indicator to 0:00:05:00 and move the layer 2160 px down while holding Shift.

creating the last keyframe for the tv lines texture

Step 13

Select the „Light Leaks 01” layer in the timeline panel and reduce the size of the clip to Start: 02:00 and Duration: 02:00.

Reducing the time of the clip

Step 14

Select the „Light Leaks 02” layer in the timeline panel and reduce the size of the clip to Start: 03:00 and Duration: 02:00.

Reducing the time of the clip

Step 15

Click on the Transitions icon and select Fade.

creating the fade effect

Step 16

Drag and drop the Fade transition to the start and the end of the „light leak 01”.

applying the fade effect to the first gradient

Step 17

Right-Click and change the duration of both Fade transitions to 0.97 s.

changing the duration of the fade effect

Step 18

After that, you need to apply the same transition with the same duration to the second „light leaks” layer.

creating the fade transitions for the second light leaks

Step 19

Create a new layer using Shift-Control-N, and then fill it with black color and name it „Fade In/Out”.

Creating a fade inout effect

Step 20

Change the Fill of the layer to 0%.

changing the fill setting of the layer

Step 21

And finally, Drag and drop the Fade With Black transition to the start and the end of the „Fade In/Out” layer.

Creating fade in and out effect

5. How to Render the Animation as a Video

Step 1

Our animation is now ready for rendering. Click on the icon in the upper right corner and select Render Video.  

opening the render panel

Step 2

Set the following settings in the Render Video panel: 

  • Format: H.264
  • Size: Document Size
  • Range: All Frames
setting up the render options

Awesome Work, You’re Now Done!

Your video is ready! In this manner, we can create an animated VHS text effect in Adobe Photoshop using the smart objects, gradient fills, filters and video overlays.

I hope you enjoyed this tutorial, and if you want to create this effect using Photoshop actions, you can check my Animated VHS Text Effect Action on GraphicRiver, which will help you to create this text effect in a few simple clicks.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

How to Create an Animated Text Effect Photoshop Action

Post pobrano z: How to Create an Animated Text Effect Photoshop Action

What You’ll Be Creating

In this tutorial, we will create a VHS-style 3D Photoshop effect for text layers using smart filters, gradient fills, and video overlays.

You can find plenty of Photoshop text actions on GraphicRiver, and if you want to create this 3D text effect in just a few simple clicks, then check my Animated VHS Text Effect Action created the same way.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

Tutorial Assets

1. How to Prepare the Document

Step 1

Press Control-N to create a new document and use the following settings: 

  • 1920 x 1080 px
  • 300 dpi
Creating a new document in photoshop

Step 2

Create a new layer using Shift-Control-N and name it „placeholder”.

Creating a new layer

Step 3

Right-Click on the layer and select Convert to Smart Object.

Converting image to smart object

Step 4

After that, Right-Click > Edit Contents on the „placeholder” layer.

opening the smart object

Step 5

Click T to open the Horizontal Type Tool and create any text using the Bebas Neue font with a size of 84 pt. After that, close and save the placeholder.

Creating a text layer

Step 6

Right-Click on the smart object, select Duplicate, and create two duplicates of the layer.

Creating duplicates of the layer

Step 7

Rename the layer to „text” and „glow” and make the first smart object Invisible.

Renaming the layers

Step 8

Select the background layer and Fill it with #141414 color using Shift-F5.

Filling the backgrond with the color

2. How to Create VHS Text Effects

Step 1

Now let’s start to create our text effects. Select the „Text” layer and then go to Filter > Blur > Gaussian Blur and set the Radius to 2 px.

Creating gaussian blur effect

Step 2

After that, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 60 px
Creating motion blur effect

Step 3

Go to Filter > Distortion > Wave and use the following settings: 

  • Number of Generators: 1
  • Wavelength: 1 and 298
  • Amplitude: 1 and 6
  • Type: Sine
Creating Wave Effect

Step 4

Now we need to create layer style effects. Double Click on the Layer and then go to Gradient Overlay.

Creating a gradient overlay

Step 5

Use the following settings for your gradient:  

  • Blend Mode: Normal
  • Opacity: 100%
  • Angle: -180°

Set the following colors for your gradient: #fc3d4f ; #fd7335 ; #f57c21.

Setting up the gradient

Step 6

After that, you need to add Gaussian Blur and Wave Effect with the same parameters to the „glow” layer.

Adding the smart filters to the second layer

Step 7

Double-Click on the layer and add an Outer Glow effect with the same gradient as we use before and the following settings: 

  • Blend Mode: Screen
  • Opacity: 100%
  • Spread: 4%
  • Size: 12 px
Adding the outer glow effect

Step 8

Change the Fill setting of the layer to 0%.

changing the fill setting of  the layer

Step 9

Select your smart objects while holding Shift, and then hit the Create a New Group icon and name it „Main Text”.

creating first group of the layer

Step 10

Create two duplicates of the group and name them „Color Shift 01” and „Color Shift 02”.

creating the duplicates of the group of layers

Step 11

Double-Click on the „Color Shift 01” layer and Uncheck the Green and Blue color channels.

Creating the first color shift effect

Step 12

Double-Click on the „Color Shift 02” layer and Uncheck the Red and Green color channels.

Creating the second color shift effect

Step 13

Move the „Color Shift 01” group of layers 4 px to the left while holding Shift.

Moving the group of layers

Step 14

Move the „Color Shift 02” group of layers 8 px to the right while holding Shift.

Moving the second group of layers

3. How to Create Overlaying Elements

Step 1

Now we need to create „TV Lines” overlay textures. Create a new layer using Shift-Control-N and Fill it with #282828 color.

Creating a new layer

Step 2

Go to Filter > Filter Gallery > Sketch and select Halftone Pattern. Use the following settings: 

  • Size: 2
  • Contrast: 50
Adding a halftone effect to the layer

Step 3

Create a duplicate of the layer and then move it 1080 px up while holding Shift.

Creating a duplicate of the layer

Step 4

After that, you need to select both of the layers and move them 1080 px up again.

Moving the layer

Step 5

Create another duplicate of the „layer 1” and then move it 1080 px down.

Moving the last layer

Step 6

Select all three layers and Right Click > Merge Layers. Name it „TV Lines”.

Merging the layers

Step 7

Change the Blending Mode of the layer to Overlay and the Opacity to 25%.

changing the blending mode and opacity of the layer

Step 8

Go to File > Place and then select the MP4 file from the attachment of this tutorial. Resize and rotate it to the borders of the document.

Placing the video overlay

Step 9

Change the Blending Mode of the layer to Screen.

Changing the blending mode of the layer

Step 10

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Video Overlays”.

creating a group of the layers

Step 11

Now we need to create gradient overlays for our video. Go to Layer > New Fill Layer > Gradient and create two gradients. Name them „Light Leaks 01” and „Light Leaks 02”.

creating the gradient fill layers

Step 12

Double-Click on the first gradient fill in the Layers panel and use the following settings: 

  • Style: Linear
  • Angle: -35°
  • Scale: 232%

setting up the first gradient fill

Step 13

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #ff7511Location: 0%; Opacity: 100%
  • Location: 35%; Opacity: 82%
  • Location: 51%; Opacity: 0%
  • Color: #e90f43Location: 61%;
  • Location: 67%; Opacity: 82%
  • Color: #f3005eLocation: 100%; Opacity: 100%
Setting up the colors of the first gradient

Step 14

Double-Click on the second gradient fill in the layer panel and use the following settings: 

  • Style: Linear
  • Angle: -171°
  • Scale: 232%
setting up the second gradient fill

Step 15

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #315934Location: 0%; Opacity: 100%
  • Color: #ac9102Location: 100%; Opacity: 100%
Setting up the colors of the second gradient

Step 16

Change the Blending Modes of both gradients to Color Dodge.

Changing the blending modes of the layers

Step 17

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Light Leaks”.

creating the group of the gradients

4. How to Create the Animation of the Layers

Step 1

Now we are ready to start creating our animation. Go to Window > Timeline and click on the Create Video Timeline icon.

creating a timeline

Step 2

Reduce the duration of the timeline to 05:00 by moving the icon shown below.

changing the duration of the timeline

Step 3

Now you need to create the first keyframe. Select the „Text” layer and click on the Timer icon near Transform to create the first Keyframe.

creating the first keyframe

Step 4

Move the Time Indicator to 0:00:00:10 and then move the layer 15 px up while holding Shift.

creating the second keyframe

Step 5

Move the Time Indicator to 0:00:00:20 and then move the layer 15 px down while holding Shift.

creating the second keyframe

Step 6

Select the keyframes we just created while holding Shift and then Right-Click > Copy.

copying the keyframes

Step 7

Move the Time Indicator to 0:00:01:00 and then hit the Keyframe icon.

creating an empty keyframe

Step 8

After that, Right-Click > Paste on the last keyframe to duplicate the keyframes we created before.

pasting the keyframes

Step 9

Create duplicates of the keyframes until you fill the whole timeline.

create the animation for the first layer

Step 10

Select all the keyframes of the „text” layer and paste them for the „glow” layer.

creating the animation for the second text layer

Step 11

Select the „TV Lines” layer and click on the Timer icon near Position to create the first Keyframe.

creating the first keyframe for the tv lines texture

Step 12

Move the Time Indicator to 0:00:05:00 and move the layer 2160 px down while holding Shift.

creating the last keyframe for the tv lines texture

Step 13

Select the „Light Leaks 01” layer in the timeline panel and reduce the size of the clip to Start: 02:00 and Duration: 02:00.

Reducing the time of the clip

Step 14

Select the „Light Leaks 02” layer in the timeline panel and reduce the size of the clip to Start: 03:00 and Duration: 02:00.

Reducing the time of the clip

Step 15

Click on the Transitions icon and select Fade.

creating the fade effect

Step 16

Drag and drop the Fade transition to the start and the end of the „light leak 01”.

applying the fade effect to the first gradient

Step 17

Right-Click and change the duration of both Fade transitions to 0.97 s.

changing the duration of the fade effect

Step 18

After that, you need to apply the same transition with the same duration to the second „light leaks” layer.

creating the fade transitions for the second light leaks

Step 19

Create a new layer using Shift-Control-N, and then fill it with black color and name it „Fade In/Out”.

Creating a fade inout effect

Step 20

Change the Fill of the layer to 0%.

changing the fill setting of the layer

Step 21

And finally, Drag and drop the Fade With Black transition to the start and the end of the „Fade In/Out” layer.

Creating fade in and out effect

5. How to Render the Animation as a Video

Step 1

Our animation is now ready for rendering. Click on the icon in the upper right corner and select Render Video.  

opening the render panel

Step 2

Set the following settings in the Render Video panel: 

  • Format: H.264
  • Size: Document Size
  • Range: All Frames
setting up the render options

Awesome Work, You’re Now Done!

Your video is ready! In this manner, we can create an animated VHS text effect in Adobe Photoshop using the smart objects, gradient fills, filters and video overlays.

I hope you enjoyed this tutorial, and if you want to create this effect using Photoshop actions, you can check my Animated VHS Text Effect Action on GraphicRiver, which will help you to create this text effect in a few simple clicks.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

How to Create an Animated Text Effect Photoshop Action

Post pobrano z: How to Create an Animated Text Effect Photoshop Action

What You’ll Be Creating

In this tutorial, we will create a VHS-style 3D Photoshop effect for text layers using smart filters, gradient fills, and video overlays.

You can find plenty of Photoshop text actions on GraphicRiver, and if you want to create this 3D text effect in just a few simple clicks, then check my Animated VHS Text Effect Action created the same way.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

Tutorial Assets

1. How to Prepare the Document

Step 1

Press Control-N to create a new document and use the following settings: 

  • 1920 x 1080 px
  • 300 dpi
Creating a new document in photoshop

Step 2

Create a new layer using Shift-Control-N and name it „placeholder”.

Creating a new layer

Step 3

Right-Click on the layer and select Convert to Smart Object.

Converting image to smart object

Step 4

After that, Right-Click > Edit Contents on the „placeholder” layer.

opening the smart object

Step 5

Click T to open the Horizontal Type Tool and create any text using the Bebas Neue font with a size of 84 pt. After that, close and save the placeholder.

Creating a text layer

Step 6

Right-Click on the smart object, select Duplicate, and create two duplicates of the layer.

Creating duplicates of the layer

Step 7

Rename the layer to „text” and „glow” and make the first smart object Invisible.

Renaming the layers

Step 8

Select the background layer and Fill it with #141414 color using Shift-F5.

Filling the backgrond with the color

2. How to Create VHS Text Effects

Step 1

Now let’s start to create our text effects. Select the „Text” layer and then go to Filter > Blur > Gaussian Blur and set the Radius to 2 px.

Creating gaussian blur effect

Step 2

After that, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 60 px
Creating motion blur effect

Step 3

Go to Filter > Distortion > Wave and use the following settings: 

  • Number of Generators: 1
  • Wavelength: 1 and 298
  • Amplitude: 1 and 6
  • Type: Sine
Creating Wave Effect

Step 4

Now we need to create layer style effects. Double Click on the Layer and then go to Gradient Overlay.

Creating a gradient overlay

Step 5

Use the following settings for your gradient:  

  • Blend Mode: Normal
  • Opacity: 100%
  • Angle: -180°

Set the following colors for your gradient: #fc3d4f ; #fd7335 ; #f57c21.

Setting up the gradient

Step 6

After that, you need to add Gaussian Blur and Wave Effect with the same parameters to the „glow” layer.

Adding the smart filters to the second layer

Step 7

Double-Click on the layer and add an Outer Glow effect with the same gradient as we use before and the following settings: 

  • Blend Mode: Screen
  • Opacity: 100%
  • Spread: 4%
  • Size: 12 px
Adding the outer glow effect

Step 8

Change the Fill setting of the layer to 0%.

changing the fill setting of  the layer

Step 9

Select your smart objects while holding Shift, and then hit the Create a New Group icon and name it „Main Text”.

creating first group of the layer

Step 10

Create two duplicates of the group and name them „Color Shift 01” and „Color Shift 02”.

creating the duplicates of the group of layers

Step 11

Double-Click on the „Color Shift 01” layer and Uncheck the Green and Blue color channels.

Creating the first color shift effect

Step 12

Double-Click on the „Color Shift 02” layer and Uncheck the Red and Green color channels.

Creating the second color shift effect

Step 13

Move the „Color Shift 01” group of layers 4 px to the left while holding Shift.

Moving the group of layers

Step 14

Move the „Color Shift 02” group of layers 8 px to the right while holding Shift.

Moving the second group of layers

3. How to Create Overlaying Elements

Step 1

Now we need to create „TV Lines” overlay textures. Create a new layer using Shift-Control-N and Fill it with #282828 color.

Creating a new layer

Step 2

Go to Filter > Filter Gallery > Sketch and select Halftone Pattern. Use the following settings: 

  • Size: 2
  • Contrast: 50
Adding a halftone effect to the layer

Step 3

Create a duplicate of the layer and then move it 1080 px up while holding Shift.

Creating a duplicate of the layer

Step 4

After that, you need to select both of the layers and move them 1080 px up again.

Moving the layer

Step 5

Create another duplicate of the „layer 1” and then move it 1080 px down.

Moving the last layer

Step 6

Select all three layers and Right Click > Merge Layers. Name it „TV Lines”.

Merging the layers

Step 7

Change the Blending Mode of the layer to Overlay and the Opacity to 25%.

changing the blending mode and opacity of the layer

Step 8

Go to File > Place and then select the MP4 file from the attachment of this tutorial. Resize and rotate it to the borders of the document.

Placing the video overlay

Step 9

Change the Blending Mode of the layer to Screen.

Changing the blending mode of the layer

Step 10

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Video Overlays”.

creating a group of the layers

Step 11

Now we need to create gradient overlays for our video. Go to Layer > New Fill Layer > Gradient and create two gradients. Name them „Light Leaks 01” and „Light Leaks 02”.

creating the gradient fill layers

Step 12

Double-Click on the first gradient fill in the Layers panel and use the following settings: 

  • Style: Linear
  • Angle: -35°
  • Scale: 232%

setting up the first gradient fill

Step 13

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #ff7511Location: 0%; Opacity: 100%
  • Location: 35%; Opacity: 82%
  • Location: 51%; Opacity: 0%
  • Color: #e90f43Location: 61%;
  • Location: 67%; Opacity: 82%
  • Color: #f3005eLocation: 100%; Opacity: 100%
Setting up the colors of the first gradient

Step 14

Double-Click on the second gradient fill in the layer panel and use the following settings: 

  • Style: Linear
  • Angle: -171°
  • Scale: 232%
setting up the second gradient fill

Step 15

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #315934Location: 0%; Opacity: 100%
  • Color: #ac9102Location: 100%; Opacity: 100%
Setting up the colors of the second gradient

Step 16

Change the Blending Modes of both gradients to Color Dodge.

Changing the blending modes of the layers

Step 17

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Light Leaks”.

creating the group of the gradients

4. How to Create the Animation of the Layers

Step 1

Now we are ready to start creating our animation. Go to Window > Timeline and click on the Create Video Timeline icon.

creating a timeline

Step 2

Reduce the duration of the timeline to 05:00 by moving the icon shown below.

changing the duration of the timeline

Step 3

Now you need to create the first keyframe. Select the „Text” layer and click on the Timer icon near Transform to create the first Keyframe.

creating the first keyframe

Step 4

Move the Time Indicator to 0:00:00:10 and then move the layer 15 px up while holding Shift.

creating the second keyframe

Step 5

Move the Time Indicator to 0:00:00:20 and then move the layer 15 px down while holding Shift.

creating the second keyframe

Step 6

Select the keyframes we just created while holding Shift and then Right-Click > Copy.

copying the keyframes

Step 7

Move the Time Indicator to 0:00:01:00 and then hit the Keyframe icon.

creating an empty keyframe

Step 8

After that, Right-Click > Paste on the last keyframe to duplicate the keyframes we created before.

pasting the keyframes

Step 9

Create duplicates of the keyframes until you fill the whole timeline.

create the animation for the first layer

Step 10

Select all the keyframes of the „text” layer and paste them for the „glow” layer.

creating the animation for the second text layer

Step 11

Select the „TV Lines” layer and click on the Timer icon near Position to create the first Keyframe.

creating the first keyframe for the tv lines texture

Step 12

Move the Time Indicator to 0:00:05:00 and move the layer 2160 px down while holding Shift.

creating the last keyframe for the tv lines texture

Step 13

Select the „Light Leaks 01” layer in the timeline panel and reduce the size of the clip to Start: 02:00 and Duration: 02:00.

Reducing the time of the clip

Step 14

Select the „Light Leaks 02” layer in the timeline panel and reduce the size of the clip to Start: 03:00 and Duration: 02:00.

Reducing the time of the clip

Step 15

Click on the Transitions icon and select Fade.

creating the fade effect

Step 16

Drag and drop the Fade transition to the start and the end of the „light leak 01”.

applying the fade effect to the first gradient

Step 17

Right-Click and change the duration of both Fade transitions to 0.97 s.

changing the duration of the fade effect

Step 18

After that, you need to apply the same transition with the same duration to the second „light leaks” layer.

creating the fade transitions for the second light leaks

Step 19

Create a new layer using Shift-Control-N, and then fill it with black color and name it „Fade In/Out”.

Creating a fade inout effect

Step 20

Change the Fill of the layer to 0%.

changing the fill setting of the layer

Step 21

And finally, Drag and drop the Fade With Black transition to the start and the end of the „Fade In/Out” layer.

Creating fade in and out effect

5. How to Render the Animation as a Video

Step 1

Our animation is now ready for rendering. Click on the icon in the upper right corner and select Render Video.  

opening the render panel

Step 2

Set the following settings in the Render Video panel: 

  • Format: H.264
  • Size: Document Size
  • Range: All Frames
setting up the render options

Awesome Work, You’re Now Done!

Your video is ready! In this manner, we can create an animated VHS text effect in Adobe Photoshop using the smart objects, gradient fills, filters and video overlays.

I hope you enjoyed this tutorial, and if you want to create this effect using Photoshop actions, you can check my Animated VHS Text Effect Action on GraphicRiver, which will help you to create this text effect in a few simple clicks.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

How to Create an Animated Text Effect Photoshop Action

Post pobrano z: How to Create an Animated Text Effect Photoshop Action

What You’ll Be Creating

In this tutorial, we will create a VHS-style 3D Photoshop effect for text layers using smart filters, gradient fills, and video overlays.

You can find plenty of Photoshop text actions on GraphicRiver, and if you want to create this 3D text effect in just a few simple clicks, then check my Animated VHS Text Effect Action created the same way.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

Tutorial Assets

1. How to Prepare the Document

Step 1

Press Control-N to create a new document and use the following settings: 

  • 1920 x 1080 px
  • 300 dpi
Creating a new document in photoshop

Step 2

Create a new layer using Shift-Control-N and name it „placeholder”.

Creating a new layer

Step 3

Right-Click on the layer and select Convert to Smart Object.

Converting image to smart object

Step 4

After that, Right-Click > Edit Contents on the „placeholder” layer.

opening the smart object

Step 5

Click T to open the Horizontal Type Tool and create any text using the Bebas Neue font with a size of 84 pt. After that, close and save the placeholder.

Creating a text layer

Step 6

Right-Click on the smart object, select Duplicate, and create two duplicates of the layer.

Creating duplicates of the layer

Step 7

Rename the layer to „text” and „glow” and make the first smart object Invisible.

Renaming the layers

Step 8

Select the background layer and Fill it with #141414 color using Shift-F5.

Filling the backgrond with the color

2. How to Create VHS Text Effects

Step 1

Now let’s start to create our text effects. Select the „Text” layer and then go to Filter > Blur > Gaussian Blur and set the Radius to 2 px.

Creating gaussian blur effect

Step 2

After that, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 60 px
Creating motion blur effect

Step 3

Go to Filter > Distortion > Wave and use the following settings: 

  • Number of Generators: 1
  • Wavelength: 1 and 298
  • Amplitude: 1 and 6
  • Type: Sine
Creating Wave Effect

Step 4

Now we need to create layer style effects. Double Click on the Layer and then go to Gradient Overlay.

Creating a gradient overlay

Step 5

Use the following settings for your gradient:  

  • Blend Mode: Normal
  • Opacity: 100%
  • Angle: -180°

Set the following colors for your gradient: #fc3d4f ; #fd7335 ; #f57c21.

Setting up the gradient

Step 6

After that, you need to add Gaussian Blur and Wave Effect with the same parameters to the „glow” layer.

Adding the smart filters to the second layer

Step 7

Double-Click on the layer and add an Outer Glow effect with the same gradient as we use before and the following settings: 

  • Blend Mode: Screen
  • Opacity: 100%
  • Spread: 4%
  • Size: 12 px
Adding the outer glow effect

Step 8

Change the Fill setting of the layer to 0%.

changing the fill setting of  the layer

Step 9

Select your smart objects while holding Shift, and then hit the Create a New Group icon and name it „Main Text”.

creating first group of the layer

Step 10

Create two duplicates of the group and name them „Color Shift 01” and „Color Shift 02”.

creating the duplicates of the group of layers

Step 11

Double-Click on the „Color Shift 01” layer and Uncheck the Green and Blue color channels.

Creating the first color shift effect

Step 12

Double-Click on the „Color Shift 02” layer and Uncheck the Red and Green color channels.

Creating the second color shift effect

Step 13

Move the „Color Shift 01” group of layers 4 px to the left while holding Shift.

Moving the group of layers

Step 14

Move the „Color Shift 02” group of layers 8 px to the right while holding Shift.

Moving the second group of layers

3. How to Create Overlaying Elements

Step 1

Now we need to create „TV Lines” overlay textures. Create a new layer using Shift-Control-N and Fill it with #282828 color.

Creating a new layer

Step 2

Go to Filter > Filter Gallery > Sketch and select Halftone Pattern. Use the following settings: 

  • Size: 2
  • Contrast: 50
Adding a halftone effect to the layer

Step 3

Create a duplicate of the layer and then move it 1080 px up while holding Shift.

Creating a duplicate of the layer

Step 4

After that, you need to select both of the layers and move them 1080 px up again.

Moving the layer

Step 5

Create another duplicate of the „layer 1” and then move it 1080 px down.

Moving the last layer

Step 6

Select all three layers and Right Click > Merge Layers. Name it „TV Lines”.

Merging the layers

Step 7

Change the Blending Mode of the layer to Overlay and the Opacity to 25%.

changing the blending mode and opacity of the layer

Step 8

Go to File > Place and then select the MP4 file from the attachment of this tutorial. Resize and rotate it to the borders of the document.

Placing the video overlay

Step 9

Change the Blending Mode of the layer to Screen.

Changing the blending mode of the layer

Step 10

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Video Overlays”.

creating a group of the layers

Step 11

Now we need to create gradient overlays for our video. Go to Layer > New Fill Layer > Gradient and create two gradients. Name them „Light Leaks 01” and „Light Leaks 02”.

creating the gradient fill layers

Step 12

Double-Click on the first gradient fill in the Layers panel and use the following settings: 

  • Style: Linear
  • Angle: -35°
  • Scale: 232%

setting up the first gradient fill

Step 13

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #ff7511Location: 0%; Opacity: 100%
  • Location: 35%; Opacity: 82%
  • Location: 51%; Opacity: 0%
  • Color: #e90f43Location: 61%;
  • Location: 67%; Opacity: 82%
  • Color: #f3005eLocation: 100%; Opacity: 100%
Setting up the colors of the first gradient

Step 14

Double-Click on the second gradient fill in the layer panel and use the following settings: 

  • Style: Linear
  • Angle: -171°
  • Scale: 232%
setting up the second gradient fill

Step 15

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #315934Location: 0%; Opacity: 100%
  • Color: #ac9102Location: 100%; Opacity: 100%
Setting up the colors of the second gradient

Step 16

Change the Blending Modes of both gradients to Color Dodge.

Changing the blending modes of the layers

Step 17

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Light Leaks”.

creating the group of the gradients

4. How to Create the Animation of the Layers

Step 1

Now we are ready to start creating our animation. Go to Window > Timeline and click on the Create Video Timeline icon.

creating a timeline

Step 2

Reduce the duration of the timeline to 05:00 by moving the icon shown below.

changing the duration of the timeline

Step 3

Now you need to create the first keyframe. Select the „Text” layer and click on the Timer icon near Transform to create the first Keyframe.

creating the first keyframe

Step 4

Move the Time Indicator to 0:00:00:10 and then move the layer 15 px up while holding Shift.

creating the second keyframe

Step 5

Move the Time Indicator to 0:00:00:20 and then move the layer 15 px down while holding Shift.

creating the second keyframe

Step 6

Select the keyframes we just created while holding Shift and then Right-Click > Copy.

copying the keyframes

Step 7

Move the Time Indicator to 0:00:01:00 and then hit the Keyframe icon.

creating an empty keyframe

Step 8

After that, Right-Click > Paste on the last keyframe to duplicate the keyframes we created before.

pasting the keyframes

Step 9

Create duplicates of the keyframes until you fill the whole timeline.

create the animation for the first layer

Step 10

Select all the keyframes of the „text” layer and paste them for the „glow” layer.

creating the animation for the second text layer

Step 11

Select the „TV Lines” layer and click on the Timer icon near Position to create the first Keyframe.

creating the first keyframe for the tv lines texture

Step 12

Move the Time Indicator to 0:00:05:00 and move the layer 2160 px down while holding Shift.

creating the last keyframe for the tv lines texture

Step 13

Select the „Light Leaks 01” layer in the timeline panel and reduce the size of the clip to Start: 02:00 and Duration: 02:00.

Reducing the time of the clip

Step 14

Select the „Light Leaks 02” layer in the timeline panel and reduce the size of the clip to Start: 03:00 and Duration: 02:00.

Reducing the time of the clip

Step 15

Click on the Transitions icon and select Fade.

creating the fade effect

Step 16

Drag and drop the Fade transition to the start and the end of the „light leak 01”.

applying the fade effect to the first gradient

Step 17

Right-Click and change the duration of both Fade transitions to 0.97 s.

changing the duration of the fade effect

Step 18

After that, you need to apply the same transition with the same duration to the second „light leaks” layer.

creating the fade transitions for the second light leaks

Step 19

Create a new layer using Shift-Control-N, and then fill it with black color and name it „Fade In/Out”.

Creating a fade inout effect

Step 20

Change the Fill of the layer to 0%.

changing the fill setting of the layer

Step 21

And finally, Drag and drop the Fade With Black transition to the start and the end of the „Fade In/Out” layer.

Creating fade in and out effect

5. How to Render the Animation as a Video

Step 1

Our animation is now ready for rendering. Click on the icon in the upper right corner and select Render Video.  

opening the render panel

Step 2

Set the following settings in the Render Video panel: 

  • Format: H.264
  • Size: Document Size
  • Range: All Frames
setting up the render options

Awesome Work, You’re Now Done!

Your video is ready! In this manner, we can create an animated VHS text effect in Adobe Photoshop using the smart objects, gradient fills, filters and video overlays.

I hope you enjoyed this tutorial, and if you want to create this effect using Photoshop actions, you can check my Animated VHS Text Effect Action on GraphicRiver, which will help you to create this text effect in a few simple clicks.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

How to Create an Animated Text Effect Photoshop Action

Post pobrano z: How to Create an Animated Text Effect Photoshop Action

What You’ll Be Creating

In this tutorial, we will create a VHS-style 3D Photoshop effect for text layers using smart filters, gradient fills, and video overlays.

You can find plenty of Photoshop text actions on GraphicRiver, and if you want to create this 3D text effect in just a few simple clicks, then check my Animated VHS Text Effect Action created the same way.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

Tutorial Assets

1. How to Prepare the Document

Step 1

Press Control-N to create a new document and use the following settings: 

  • 1920 x 1080 px
  • 300 dpi
Creating a new document in photoshop

Step 2

Create a new layer using Shift-Control-N and name it „placeholder”.

Creating a new layer

Step 3

Right-Click on the layer and select Convert to Smart Object.

Converting image to smart object

Step 4

After that, Right-Click > Edit Contents on the „placeholder” layer.

opening the smart object

Step 5

Click T to open the Horizontal Type Tool and create any text using the Bebas Neue font with a size of 84 pt. After that, close and save the placeholder.

Creating a text layer

Step 6

Right-Click on the smart object, select Duplicate, and create two duplicates of the layer.

Creating duplicates of the layer

Step 7

Rename the layer to „text” and „glow” and make the first smart object Invisible.

Renaming the layers

Step 8

Select the background layer and Fill it with #141414 color using Shift-F5.

Filling the backgrond with the color

2. How to Create VHS Text Effects

Step 1

Now let’s start to create our text effects. Select the „Text” layer and then go to Filter > Blur > Gaussian Blur and set the Radius to 2 px.

Creating gaussian blur effect

Step 2

After that, go to Filter > Blur > Motion Blur and use the following settings: 

  • Angle: 90°
  • Distance: 60 px
Creating motion blur effect

Step 3

Go to Filter > Distortion > Wave and use the following settings: 

  • Number of Generators: 1
  • Wavelength: 1 and 298
  • Amplitude: 1 and 6
  • Type: Sine
Creating Wave Effect

Step 4

Now we need to create layer style effects. Double Click on the Layer and then go to Gradient Overlay.

Creating a gradient overlay

Step 5

Use the following settings for your gradient:  

  • Blend Mode: Normal
  • Opacity: 100%
  • Angle: -180°

Set the following colors for your gradient: #fc3d4f ; #fd7335 ; #f57c21.

Setting up the gradient

Step 6

After that, you need to add Gaussian Blur and Wave Effect with the same parameters to the „glow” layer.

Adding the smart filters to the second layer

Step 7

Double-Click on the layer and add an Outer Glow effect with the same gradient as we use before and the following settings: 

  • Blend Mode: Screen
  • Opacity: 100%
  • Spread: 4%
  • Size: 12 px
Adding the outer glow effect

Step 8

Change the Fill setting of the layer to 0%.

changing the fill setting of  the layer

Step 9

Select your smart objects while holding Shift, and then hit the Create a New Group icon and name it „Main Text”.

creating first group of the layer

Step 10

Create two duplicates of the group and name them „Color Shift 01” and „Color Shift 02”.

creating the duplicates of the group of layers

Step 11

Double-Click on the „Color Shift 01” layer and Uncheck the Green and Blue color channels.

Creating the first color shift effect

Step 12

Double-Click on the „Color Shift 02” layer and Uncheck the Red and Green color channels.

Creating the second color shift effect

Step 13

Move the „Color Shift 01” group of layers 4 px to the left while holding Shift.

Moving the group of layers

Step 14

Move the „Color Shift 02” group of layers 8 px to the right while holding Shift.

Moving the second group of layers

3. How to Create Overlaying Elements

Step 1

Now we need to create „TV Lines” overlay textures. Create a new layer using Shift-Control-N and Fill it with #282828 color.

Creating a new layer

Step 2

Go to Filter > Filter Gallery > Sketch and select Halftone Pattern. Use the following settings: 

  • Size: 2
  • Contrast: 50
Adding a halftone effect to the layer

Step 3

Create a duplicate of the layer and then move it 1080 px up while holding Shift.

Creating a duplicate of the layer

Step 4

After that, you need to select both of the layers and move them 1080 px up again.

Moving the layer

Step 5

Create another duplicate of the „layer 1” and then move it 1080 px down.

Moving the last layer

Step 6

Select all three layers and Right Click > Merge Layers. Name it „TV Lines”.

Merging the layers

Step 7

Change the Blending Mode of the layer to Overlay and the Opacity to 25%.

changing the blending mode and opacity of the layer

Step 8

Go to File > Place and then select the MP4 file from the attachment of this tutorial. Resize and rotate it to the borders of the document.

Placing the video overlay

Step 9

Change the Blending Mode of the layer to Screen.

Changing the blending mode of the layer

Step 10

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Video Overlays”.

creating a group of the layers

Step 11

Now we need to create gradient overlays for our video. Go to Layer > New Fill Layer > Gradient and create two gradients. Name them „Light Leaks 01” and „Light Leaks 02”.

creating the gradient fill layers

Step 12

Double-Click on the first gradient fill in the Layers panel and use the following settings: 

  • Style: Linear
  • Angle: -35°
  • Scale: 232%

setting up the first gradient fill

Step 13

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #ff7511Location: 0%; Opacity: 100%
  • Location: 35%; Opacity: 82%
  • Location: 51%; Opacity: 0%
  • Color: #e90f43Location: 61%;
  • Location: 67%; Opacity: 82%
  • Color: #f3005eLocation: 100%; Opacity: 100%
Setting up the colors of the first gradient

Step 14

Double-Click on the second gradient fill in the layer panel and use the following settings: 

  • Style: Linear
  • Angle: -171°
  • Scale: 232%
setting up the second gradient fill

Step 15

After that, Left-Click on the Gradient in the same panel and create a new gradient with the following settings: 

  • Color: #315934Location: 0%; Opacity: 100%
  • Color: #ac9102Location: 100%; Opacity: 100%
Setting up the colors of the second gradient

Step 16

Change the Blending Modes of both gradients to Color Dodge.

Changing the blending modes of the layers

Step 17

Select your overlay layers while holding Shift, and then hit the Create a New Group icon and name it „Light Leaks”.

creating the group of the gradients

4. How to Create the Animation of the Layers

Step 1

Now we are ready to start creating our animation. Go to Window > Timeline and click on the Create Video Timeline icon.

creating a timeline

Step 2

Reduce the duration of the timeline to 05:00 by moving the icon shown below.

changing the duration of the timeline

Step 3

Now you need to create the first keyframe. Select the „Text” layer and click on the Timer icon near Transform to create the first Keyframe.

creating the first keyframe

Step 4

Move the Time Indicator to 0:00:00:10 and then move the layer 15 px up while holding Shift.

creating the second keyframe

Step 5

Move the Time Indicator to 0:00:00:20 and then move the layer 15 px down while holding Shift.

creating the second keyframe

Step 6

Select the keyframes we just created while holding Shift and then Right-Click > Copy.

copying the keyframes

Step 7

Move the Time Indicator to 0:00:01:00 and then hit the Keyframe icon.

creating an empty keyframe

Step 8

After that, Right-Click > Paste on the last keyframe to duplicate the keyframes we created before.

pasting the keyframes

Step 9

Create duplicates of the keyframes until you fill the whole timeline.

create the animation for the first layer

Step 10

Select all the keyframes of the „text” layer and paste them for the „glow” layer.

creating the animation for the second text layer

Step 11

Select the „TV Lines” layer and click on the Timer icon near Position to create the first Keyframe.

creating the first keyframe for the tv lines texture

Step 12

Move the Time Indicator to 0:00:05:00 and move the layer 2160 px down while holding Shift.

creating the last keyframe for the tv lines texture

Step 13

Select the „Light Leaks 01” layer in the timeline panel and reduce the size of the clip to Start: 02:00 and Duration: 02:00.

Reducing the time of the clip

Step 14

Select the „Light Leaks 02” layer in the timeline panel and reduce the size of the clip to Start: 03:00 and Duration: 02:00.

Reducing the time of the clip

Step 15

Click on the Transitions icon and select Fade.

creating the fade effect

Step 16

Drag and drop the Fade transition to the start and the end of the „light leak 01”.

applying the fade effect to the first gradient

Step 17

Right-Click and change the duration of both Fade transitions to 0.97 s.

changing the duration of the fade effect

Step 18

After that, you need to apply the same transition with the same duration to the second „light leaks” layer.

creating the fade transitions for the second light leaks

Step 19

Create a new layer using Shift-Control-N, and then fill it with black color and name it „Fade In/Out”.

Creating a fade inout effect

Step 20

Change the Fill of the layer to 0%.

changing the fill setting of the layer

Step 21

And finally, Drag and drop the Fade With Black transition to the start and the end of the „Fade In/Out” layer.

Creating fade in and out effect

5. How to Render the Animation as a Video

Step 1

Our animation is now ready for rendering. Click on the icon in the upper right corner and select Render Video.  

opening the render panel

Step 2

Set the following settings in the Render Video panel: 

  • Format: H.264
  • Size: Document Size
  • Range: All Frames
setting up the render options

Awesome Work, You’re Now Done!

Your video is ready! In this manner, we can create an animated VHS text effect in Adobe Photoshop using the smart objects, gradient fills, filters and video overlays.

I hope you enjoyed this tutorial, and if you want to create this effect using Photoshop actions, you can check my Animated VHS Text Effect Action on GraphicRiver, which will help you to create this text effect in a few simple clicks.

httpsgraphicrivernetitemanimated-vhs-text-effect-action23844478

Burger King: The Whopper Detour

Post pobrano z: Burger King: The Whopper Detour

Online, Mobile
Burger King

Advertising Agency:Fcb, New York, USA
Chief Creative Officer:Ari Halper
Associate Creative Director:Alex Sprouse, Laszlo Szloboda, Akos Papp
Worldwide Creative Partner:Fred Levron
Executive Creative Director:Gabriel Schmitt
Account Director:Sarah Tarner
Senior Project Manager:Jesse Morris
Senior Producer:Henna Kathiya
Director Of Integrated Production:Adam Isidore
Business Affairs Lead:Janice Katz

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