Swipeable card stack using Vue.js and interact.js

Post pobrano z: Swipeable card stack using Vue.js and interact.js

I recently had an opportunity to work on a fantastic research and development project at Netguru. The goal of project (codename: „Wordguru”) was to create a card game that anyone can play with their friends. You can see the outcome here.

One element of the development process was to create an interactive card stack. The card stack had a set of requirements, including:

  • It should contain a few cards from the collection.
  • The first card should be interactive.
  • The user should be able to swipe the card in different directions that indicate an intent to accept, reject or skip the card.

This article will explain how to create that and make it interactive using Vue.js and interact.js. I created an example for you to refer to as we go through the process of creating a component that is in charge of displaying that card stack and a second component that is responsible for rendering a single card and managing user interactions in it.

View Demo

Step 1: Create the GameCard component in Vue

Let’s start by creating a component that will show a card, but without any interactions just yet. We’ll call this file GameCard.vue and, in the component template, we’ll render a card wrapper and the keyword for a specific card. This is the file we’ll be working in throughout this post.

// GameCard.vue
<template>
  <div
    class="card"
    :class="{ isCurrent: isCurrent }"
  >
    <h3 class="cardTitle">{{ card.keyword }}</h3>
  </div>
</template>

In the script section of the component, we receive the prop card that contains our card content as well as an isCurrent prop that gives the card a distinct look when needed.

export default {
  props: {
    card: {
      type: Object,
      required: true
    },
    isCurrent: {
      type: Boolean,
      required: true
    }
  }
},

Step 2: Create the GameCardStack component in Vue

Now that we have a single card, let’s create our card stack.

This component will receive an array of cards and render the GameCard for each card. It’s also going to mark the first card as the current card in the stack so a special styling is applied to it.

// GameCardsStack.vue
<template>
  <div class="cards">
    <GameCard
      v-for="(card, index) in cards"
      :key="card"
      :card="card"
      :is-current="index === 0"
    />
  </div>
</template>

<script>
  import GameCard from "@/components/GameCard";
  export default {
    components: {
      GameCard
    },
    props: {
      cards: {
        type: Array,
        required: true
      }
    }
  };
</script>

Here’s what we’re looking at so far, using the styles pulled from the demo:

At this point, our card looks complete, but isn’t very interactive. Let’s fix that in the next step!

Step 3: Add interactivity to GameCard component

All our interactivity logic will live in the GameCard component. Let’s start by allowing the user to drag the card. We will use interact.js to deal with dragging.

We’ll set the interactPosition initial values to 0 in the script section. These are the values that indicate a card’s order in the stack when it’s moved from its original position.

<script>
import interact from "interact.js";

data() {
  return {
    interactPosition: {
      x: 0,
      y: 0
    },
  };
},
// ...
</script>

Next, we create a computed property that’s responsible for creating a transform value that’s applied to our card element.

// ...
computed: {
  transformString() {
    const { x, y } = this.interactPosition;
    return `translate3D(${x}px, ${y}px, 0)`;
  }
},
// ...

In the mounted lifecycle hook, we make use of the interact.js and its draggable method. That method allows us to fire a custom function each time the element is dragged (onmove). It also exposes an event object that carries information about how far the element is dragged from its original position. Each time user drags the card, we calculate a new position of the card and set it on the interactPosition property. That triggers our transformString computed property and sets new value of transform on our card.

We use the interact onend hook that allows us to listen when the user releases the mouse and finishes the drag. At this point, we will reset the position of our card and bring it back to its original position: { x: 0, y: 0 }.

We also need to make sure to remove the card element from the Interactable object before it gets destroyed. We do that in the beforeDestroy lifecycle hook by using interact(target).unset(). That removes all event listeners and makes interact.js completely forget about the target.

// ...
mounted() {
  const element = this.$refs.interactElement;
  interact(element).draggable({
    onmove: event => {
      const x = this.interactPosition.x + event.dx;
      const y = this.interactPosition.y + event.dy;
      this.interactSetPosition({ x, y });
    },
    onend: () => {
      this.resetCardPosition();
    }
  });
},
// ...
beforeDestroy() {
  interact(this.$refs.interactElement).unset();
},
// ...
methods: {
  interactSetPosition(coordinates) { 
    const { x = 0, y = 0 } = coordinates;
    this.interactPosition = {x, y };
  },
  
  resetCardPosition() {
    this.interactSetPosition({ x: 0, y: 0 });
  },
},
// ...

We need to add one thing in our template to make this work. As our transformString computed property returns a string, we need to apply it to the card component. We do that by binding to the :style attribute and then passing the string to the transform property.

<template>
  <div 
    class="card"
    :class="{ isCurrent: isCurrent }"
    :style="{ transform: transformString }"
  >
    <h3 class="cardTitle">{{ card.keyword }}</h3>
  </div>
</template>

With that done, we have created interaction with our card — we can drag it around!

You may have noticed that the behavior isn’t very natural, specifically when we drag the card and release it. The card immediately returns to its original position, but it would be more natural if the card would go back to initial position with animation to smooth the transition.

That’s where transition comes into play! But adding it to our card introduces another issue: there’s a lag in the card following as it follows the cursor because transition is applied to the element at all times. We only want it applied when the drag ends. We can do that by binding one more class (isAnimating) to the component.

<template>
  <div
    class="card"
    :class="{
      isAnimating: isInteractAnimating,
      isCurrent: isCurrent
    }"
  >
    <h3 class="cardTitle">{{ card.keyword }}</h3>
  </div>
</template>

We can add and remove the animation class by changing the isInteractAnimating property.

The animation effect should be applied initially and we do that by setting our property in data.

In the mounted hook where we initialize interact.js, we use one more interact hook (onstart) and change the value of isInteractAnimating to false so that the animation is disabled when the during the drag.

We’ll enable the animation again in the onend hook, and that will make our card animate smoothly to its original position when we release it from the drag.

We also need to update transformString computed property and add a guard to recalculate and return a string only when we are dragging the card.

data() {
  return {
  // ...
  isInteractAnimating: true,
  // ...
  };
},

computed: {
  transformString() {
    if (!this.isInteractAnimating) {
      const { x, y } = this.interactPosition;
      return `translate3D(${x}px, ${y}px, 0)`;
    }
    return null;
  }
},

mounted() {
  const element = this.$refs.interactElement;
  interact(element).draggable({
    onstart: () => {
      this.isInteractAnimating = false;
    },
    // ...
    onend: () => {
      this.isInteractAnimating = true;
    },
  });
},

Now things are starting to look nice!

Our card stack is ready for second set of interactions. We can drag the card around, but nothing is actually happening — the card is always coming back to its original place, but there is no way to get to the second card.

This will change when we add logic that allows the user to accept and rejecting cards.

Step 4: Detect when the card is accepted, rejected, or skipped

The card has three types of interactions:

  • Accept card (on swipe right)
  • Reject card (on swipe left)
  • Skip card (on swipe down)

We need to find a place where we can detect if the card was dragged from its initial position. We also want to be sure that this check will happen only when we finish dragging the card so the interactions do not conflict with the animation we just finished.

We used that place earlier smooth the transition during animation — it’s the onend hook provided by the interact.draggable method.

Let’s jump into the code.

First, we need to store our threshold values. Those values are the distances as the card is dragged from its original position and allows us to determine if the card should be accepted, rejected, or skipped. We use X axis for right (accept) and left (reject), then use the Y axis for downward movement (skip).

We also set coordinates where we want to place a card after it gets accepted, rejected or skipped (coordinates out of user’s sight).

Since those values will not change, we will keep them in the static property of our component, which can be accessed with this.$options.static.interactYThreshold.

export default {
  static: {
    interactYThreshold: 150,
    interactXThreshold: 100
  },

We need to check if any of our thresholds were met in our onend hook and then fire the appropriate method that happened. If no threshold is met, then we reset the card to its initial position.

mounted() {
  const element = this.$refs.interactElement;
  interact(element).draggable({
    onstart: () => {...},
    onmove: () => {...},
    onend: () => {
      const { x, y } = this.interactPosition;
      const { interactXThreshold, interactYThreshold } = this.$options.static;
      this.isInteractAnimating = true;
          
      if (x > interactXThreshold) this.playCard(ACCEPT_CARD);
      else if (x < -interactXThreshold) this.playCard(REJECT_CARD);
      else if (y > interactYThreshold) this.playCard(SKIP_CARD);
      else this.resetCardPosition();
    }
  });
}

OK, now we need to create a playCard method that’s responsible for handling those interactive actions.

Step 5: Establish the logic to accept, reject, and skip cards

We will create a method that accepts a parameter telling us the user’s intended action. Depending on that parameter, we will set the final position of the current card and emit the accept, reject, or skip event. Let’s go step by step.

First, our playCard method will remove the card element from the Interactable object so that it stops tracking drag events. We do that by using interact(target).unset().
Secondly, we set the final position of the active card depending on the user’s intention. That new position allows us to animate the card and remove it from the user’s view.

Next, we emit an event up to the parent component so we can deal with our cards (e.g. change the current card, load more cards, shuffle the cards, etc.). We want to follow the DDAU principle that states a component should refrain from mutating data it doesn’t own. Since our cards are passed down to our component, it should emit an event up to the place from where those cards come.

Lastly, we hide the card that was just played and add a timeout that allow the card to animate out of view.

methods: {
  playCard(interaction) {
    const {
      interactOutOfSightXCoordinate,
      interactOutOfSightYCoordinate,
    } = this.$options.static;

    this.interactUnsetElement();

    switch (interaction) {
      case ACCEPT_CARD:
        this.interactSetPosition({
          x: interactOutOfSightXCoordinate,
        });
        this.$emit(ACCEPT_CARD);
        break;
      case REJECT_CARD:
        this.interactSetPosition({
          x: -interactOutOfSightXCoordinate,
        });
        this.$emit(REJECT_CARD);
        break;
      case SKIP_CARD:
        this.interactSetPosition({
          y: interactOutOfSightYCoordinate
        });
        this.$emit(SKIP_CARD);
        break;
    }

    this.hideCard();
  },

  hideCard() {
    setTimeout(() => {
      this.isShowing = false;
      this.$emit("hideCard", this.card);
    }, 300);
  },
  
  interactUnsetElement() {
    interact(this.$refs.interactElement).unset();
    this.interactDragged = true;
  },
}

And, there we go!

Summary

Let’s recap what we just accomplished:

  • First we created a component for a single card.
  • Next we created another component that renders the cards in a stack.
  • Thirdly, we implemented interact.js to allow interactive dragging.
  • Then we detected when the user wants takes an action with the current card.
  • Finally, we established the to handle those actions.

Phew, we covered a lot! Hopefully this gives you both a new trick in your toolbox as well as a hands-on use case for Vue. And, if you’ve ever had to build something similar, please share in the comments because it would be neat to compare notes.

The post Swipeable card stack using Vue.js and interact.js appeared first on CSS-Tricks.

How to Create a Photo to Watercolor Photoshop Action

Post pobrano z: How to Create a Photo to Watercolor Photoshop Action

Final product image
What You’ll Be Creating

In this tutorial, you will learn how to create an amazing watercolor photo effect in Adobe Photoshop. I will explain everything in so much detail that anyone can create it, even those who have just opened Photoshop for the first time. 

The effect shown above is the one I will show you how to create in this tutorial. If you would like to create the even more advanced watercolor effects shown below, using just a single click and in only a few minutes, then check out my Aquarelle Photoshop Action.

Action final results

What You’ll Need

To recreate the design above, you will need the following resources:

1. How to Start Creating an Action

Step 1

First, open the photo that you want to work with. To open your photo, go to File > Open, choose your photo, and click Open. Now, before we get started, just check a couple of things:

  1. Your photo should be in RGB Color mode, 8 Bits/Channel. To check this, go to Image > Mode.
  2. For best results, your photo size should be 2000–3000 px wide/high. To check this, go to Image > Image Size.
  3. Your photo should be the Background layer. If it is not, go to Layer > New > Background from Layer.
Checking image size and mode

Step 2

Now we need to expand the canvas on the left so we have more space around the subject on this side. Go to Image > Canvas Size and use the settings below:

Expanding canvas

Step 3

Choose the Rectangular Marquee Tool (M), and click and drag to make a selection of the empty white space we have just added. Then, go to Edit > Fill, and set Contents to Content-Aware, Blending to Normal, and Opacity to 100% as shown below. After that, press Control-D on your keyboard to deselect.

Filling selection

2. How to Create the Brushes

In
this section, we are going to create several watercolor brushes we’ll need.
You can check this tutorial to follow the process described and create your own brushes from scratch or using the attached textures, or you can download my TechnicalArt 2 Photoshop Action and get over 60 high-quality and resolution watercolor brushes. Here are the main brushes I’ll be using:

Watercolor brushes

3. How to Create the Background

Step 1

In this section, we are going to create the background. Go to Layer > New Fill Layer > Solid Color to create a new solid color fill layer, name it Background color, and choose the color #cccccc.

Creating new solid color fill layer

Step 2

Go to File > Place Embedded, select the texture from the second texture link, and click Place. Then, set the Width and Height of the texture to 83.03% as shown below, and name this layer Background_Texture.

Placing texture

Step 3

Now change the Blending Mode of this layer to Soft Light and set the Opacity to 52%.

Changing blending mode and opacity

Step 4

Go to Layer > New Adjustment Layer > Black & White to create a new black & white adjustment layer, and name it BT_Desaturate.

Creating new black and white adjustment layer

Step 5

Now press Control-Alt-G on your keyboard to create a clipping mask.

Creating clipping mask

4. How to Create the Sketch

Step 1

In this section, we are going to create the sketch. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now press Control-Shift-U on your keyboard to desaturate this layer. Then, go to Filter > Filter Gallery > Stylize > Glowing Edges and set the Edge Width to 1, Edge Brightness to 20, and Smoothness to 15.

Adding glowing edges filter

Step 3

Press Control-I on your keyboard to invert this layer. Then, go to Filter > Sharpen > Unsharp Mask and set the Amount to 500%, Radius to 1 px, and Threshold to 0 levels.

Adding unsharp mask filter

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 29%. Then, name this layer Sketch.

Changing blending mode and opacity

5. How to Create the Watercolor Painting

Step 1

In this section, we are going to create the watercolor painting. Go to Layer > New > Layer to create a new layer and name it Temp.

Creating new layer

Step 2

Now set the foreground color to #000000, choose the Brush Tool (B), and pick some of the watercolor brushes you have created. Then, brush over and around the subject area where you want to create the watercolor painting.

Brushing onto layer

Step 3

Control-click on this layer thumbnail to make a selection of this layer. Then, hide this layer, select the Background layer, and press Control-J on your keyboard to create a new layer using the selection. After that, drag this new layer just below the Temp layer in the Layers panel.

Creating new layer using selection

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 80%. Then, name this layer Watercolor_Painting_1.

Changing blending mode and opacity

Step 5

Right-click on the Temp layer and choose Delete Layer.

Deleting layer

Step 6

Now repeat this process using the different watercolor brushes to create more watercolor painting layers. Here is my result:

Creating more watercolor painting layers

6. How to Create the Main Subject

Step 1

In this section, we are going to create the main subject. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now go to Layer > Layer Mask > Hide All to add a layer mask that hides the whole layer.

Adding layer mask

Step 3

Set the foreground color to #ffffff, choose the Brush Tool (B), pick some of the watercolor brushes that you have created, and brush mostly over the subject area. Feel free to use different watercolor brushes.

Brushing into layer mask

Step 4

Now name this layer Main Subject.

Naming layer

7. How to Make the Final Adjustments

Step 1

In this section, we are going to make some final adjustments. Select the Subject Details layer, go to Layer > New Adjustment Layer > Curves to create a new curves adjustment layer, and name it Color Look.

Creating new curves adjustment layer

Step 2

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting curves

Step 3

Press D on your keyboard to reset the swatches. Then, go to Layer > New Adjustment Layer > Gradient Map to create a new gradient map adjustment layer and name it Overall Contrast.

Creating new gradient map adjustment layer

Step 4

Change the Blending Mode of this layer to Soft Light and set the Opacity to 25%.

Changing blending mode and opacity

Step 5

Go to Layer > New Adjustment Layer > Vibrance to create a new vibrance adjustment layer and name it Overall Vibrance/Saturation.

Creating new vibrance adjustment layer

Step 6

Now Double-click on this layer thumbnail and, in the Properties panel, set the Vibrance to +47 and Saturation to +23.

Adjusting vibrance and saturation

Step 7

Go to Layer > New Adjustment Layer > Levels to create a new levels adjustment layer, and name it Overall Brightness.

Creating new levels adjustment layer

Step 8

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting levels

Step 9

Press Control-Alt-Shift-E on your keyboard to make a screenshot, and then press Control-Shift-U to desaturate this layer. Then, go to Filter > Other > High Pass and set the Radius to 2 px.

Adding high pass filter

Step 10

Now change the Blending Mode of this layer to Soft Light and name it Overall Sharpening.

Changing blending mode

8. How to Crop the Image

Now let’s crop the image to cut out the empty area of the design. Choose the Crop Tool (C) and transform the Crop Box as shown below:

Cropping image

You Made It!

Congratulations, you have succeeded! Here is our final result:

Final result

If you would like to create the even more advanced watercolor effects
shown below, using just a single click and in only a few minutes, then
check out my Aquarelle Photoshop Action.

Using
this action, you can transform your photos into professional aquarelle
artworks with no work at all! You just brush over your photo and play
the action. The action will do all the work for you in just a couple of
minutes, leaving you fully layered and customizable results.

The action is also made so that every time you run the action you will get a unique result,
even if you use the same brushed area. The action will always create
unique variations in the watercolor textures, so you can create an unlimited number of
results! The action also creates 50 preset color looks that you can choose from.

The action comes with a detailed video tutorial that demonstrates how to use the action and customize the results to get the most out of the effect.

Action final results

You may also like:

How to Create a Photo to Watercolor Photoshop Action

Post pobrano z: How to Create a Photo to Watercolor Photoshop Action

Final product image
What You’ll Be Creating

In this tutorial, you will learn how to create an amazing watercolor photo effect in Adobe Photoshop. I will explain everything in so much detail that anyone can create it, even those who have just opened Photoshop for the first time. 

The effect shown above is the one I will show you how to create in this tutorial. If you would like to create the even more advanced watercolor effects shown below, using just a single click and in only a few minutes, then check out my Aquarelle Photoshop Action.

Action final results

What You’ll Need

To recreate the design above, you will need the following resources:

1. How to Start Creating an Action

Step 1

First, open the photo that you want to work with. To open your photo, go to File > Open, choose your photo, and click Open. Now, before we get started, just check a couple of things:

  1. Your photo should be in RGB Color mode, 8 Bits/Channel. To check this, go to Image > Mode.
  2. For best results, your photo size should be 2000–3000 px wide/high. To check this, go to Image > Image Size.
  3. Your photo should be the Background layer. If it is not, go to Layer > New > Background from Layer.
Checking image size and mode

Step 2

Now we need to expand the canvas on the left so we have more space around the subject on this side. Go to Image > Canvas Size and use the settings below:

Expanding canvas

Step 3

Choose the Rectangular Marquee Tool (M), and click and drag to make a selection of the empty white space we have just added. Then, go to Edit > Fill, and set Contents to Content-Aware, Blending to Normal, and Opacity to 100% as shown below. After that, press Control-D on your keyboard to deselect.

Filling selection

2. How to Create the Brushes

In
this section, we are going to create several watercolor brushes we’ll need.
You can check this tutorial to follow the process described and create your own brushes from scratch or using the attached textures, or you can download my TechnicalArt 2 Photoshop Action and get over 60 high-quality and resolution watercolor brushes. Here are the main brushes I’ll be using:

Watercolor brushes

3. How to Create the Background

Step 1

In this section, we are going to create the background. Go to Layer > New Fill Layer > Solid Color to create a new solid color fill layer, name it Background color, and choose the color #cccccc.

Creating new solid color fill layer

Step 2

Go to File > Place Embedded, select the texture from the second texture link, and click Place. Then, set the Width and Height of the texture to 83.03% as shown below, and name this layer Background_Texture.

Placing texture

Step 3

Now change the Blending Mode of this layer to Soft Light and set the Opacity to 52%.

Changing blending mode and opacity

Step 4

Go to Layer > New Adjustment Layer > Black & White to create a new black & white adjustment layer, and name it BT_Desaturate.

Creating new black and white adjustment layer

Step 5

Now press Control-Alt-G on your keyboard to create a clipping mask.

Creating clipping mask

4. How to Create the Sketch

Step 1

In this section, we are going to create the sketch. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now press Control-Shift-U on your keyboard to desaturate this layer. Then, go to Filter > Filter Gallery > Stylize > Glowing Edges and set the Edge Width to 1, Edge Brightness to 20, and Smoothness to 15.

Adding glowing edges filter

Step 3

Press Control-I on your keyboard to invert this layer. Then, go to Filter > Sharpen > Unsharp Mask and set the Amount to 500%, Radius to 1 px, and Threshold to 0 levels.

Adding unsharp mask filter

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 29%. Then, name this layer Sketch.

Changing blending mode and opacity

5. How to Create the Watercolor Painting

Step 1

In this section, we are going to create the watercolor painting. Go to Layer > New > Layer to create a new layer and name it Temp.

Creating new layer

Step 2

Now set the foreground color to #000000, choose the Brush Tool (B), and pick some of the watercolor brushes you have created. Then, brush over and around the subject area where you want to create the watercolor painting.

Brushing onto layer

Step 3

Control-click on this layer thumbnail to make a selection of this layer. Then, hide this layer, select the Background layer, and press Control-J on your keyboard to create a new layer using the selection. After that, drag this new layer just below the Temp layer in the Layers panel.

Creating new layer using selection

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 80%. Then, name this layer Watercolor_Painting_1.

Changing blending mode and opacity

Step 5

Right-click on the Temp layer and choose Delete Layer.

Deleting layer

Step 6

Now repeat this process using the different watercolor brushes to create more watercolor painting layers. Here is my result:

Creating more watercolor painting layers

6. How to Create the Main Subject

Step 1

In this section, we are going to create the main subject. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now go to Layer > Layer Mask > Hide All to add a layer mask that hides the whole layer.

Adding layer mask

Step 3

Set the foreground color to #ffffff, choose the Brush Tool (B), pick some of the watercolor brushes that you have created, and brush mostly over the subject area. Feel free to use different watercolor brushes.

Brushing into layer mask

Step 4

Now name this layer Main Subject.

Naming layer

7. How to Make the Final Adjustments

Step 1

In this section, we are going to make some final adjustments. Select the Subject Details layer, go to Layer > New Adjustment Layer > Curves to create a new curves adjustment layer, and name it Color Look.

Creating new curves adjustment layer

Step 2

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting curves

Step 3

Press D on your keyboard to reset the swatches. Then, go to Layer > New Adjustment Layer > Gradient Map to create a new gradient map adjustment layer and name it Overall Contrast.

Creating new gradient map adjustment layer

Step 4

Change the Blending Mode of this layer to Soft Light and set the Opacity to 25%.

Changing blending mode and opacity

Step 5

Go to Layer > New Adjustment Layer > Vibrance to create a new vibrance adjustment layer and name it Overall Vibrance/Saturation.

Creating new vibrance adjustment layer

Step 6

Now Double-click on this layer thumbnail and, in the Properties panel, set the Vibrance to +47 and Saturation to +23.

Adjusting vibrance and saturation

Step 7

Go to Layer > New Adjustment Layer > Levels to create a new levels adjustment layer, and name it Overall Brightness.

Creating new levels adjustment layer

Step 8

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting levels

Step 9

Press Control-Alt-Shift-E on your keyboard to make a screenshot, and then press Control-Shift-U to desaturate this layer. Then, go to Filter > Other > High Pass and set the Radius to 2 px.

Adding high pass filter

Step 10

Now change the Blending Mode of this layer to Soft Light and name it Overall Sharpening.

Changing blending mode

8. How to Crop the Image

Now let’s crop the image to cut out the empty area of the design. Choose the Crop Tool (C) and transform the Crop Box as shown below:

Cropping image

You Made It!

Congratulations, you have succeeded! Here is our final result:

Final result

If you would like to create the even more advanced watercolor effects
shown below, using just a single click and in only a few minutes, then
check out my Aquarelle Photoshop Action.

Using
this action, you can transform your photos into professional aquarelle
artworks with no work at all! You just brush over your photo and play
the action. The action will do all the work for you in just a couple of
minutes, leaving you fully layered and customizable results.

The action is also made so that every time you run the action you will get a unique result,
even if you use the same brushed area. The action will always create
unique variations in the watercolor textures, so you can create an unlimited number of
results! The action also creates 50 preset color looks that you can choose from.

The action comes with a detailed video tutorial that demonstrates how to use the action and customize the results to get the most out of the effect.

Action final results

You may also like:

How to Create a Photo to Watercolor Photoshop Action

Post pobrano z: How to Create a Photo to Watercolor Photoshop Action

Final product image
What You’ll Be Creating

In this tutorial, you will learn how to create an amazing watercolor photo effect in Adobe Photoshop. I will explain everything in so much detail that anyone can create it, even those who have just opened Photoshop for the first time. 

The effect shown above is the one I will show you how to create in this tutorial. If you would like to create the even more advanced watercolor effects shown below, using just a single click and in only a few minutes, then check out my Aquarelle Photoshop Action.

Action final results

What You’ll Need

To recreate the design above, you will need the following resources:

1. How to Start Creating an Action

Step 1

First, open the photo that you want to work with. To open your photo, go to File > Open, choose your photo, and click Open. Now, before we get started, just check a couple of things:

  1. Your photo should be in RGB Color mode, 8 Bits/Channel. To check this, go to Image > Mode.
  2. For best results, your photo size should be 2000–3000 px wide/high. To check this, go to Image > Image Size.
  3. Your photo should be the Background layer. If it is not, go to Layer > New > Background from Layer.
Checking image size and mode

Step 2

Now we need to expand the canvas on the left so we have more space around the subject on this side. Go to Image > Canvas Size and use the settings below:

Expanding canvas

Step 3

Choose the Rectangular Marquee Tool (M), and click and drag to make a selection of the empty white space we have just added. Then, go to Edit > Fill, and set Contents to Content-Aware, Blending to Normal, and Opacity to 100% as shown below. After that, press Control-D on your keyboard to deselect.

Filling selection

2. How to Create the Brushes

In
this section, we are going to create several watercolor brushes we’ll need.
You can check this tutorial to follow the process described and create your own brushes from scratch or using the attached textures, or you can download my TechnicalArt 2 Photoshop Action and get over 60 high-quality and resolution watercolor brushes. Here are the main brushes I’ll be using:

Watercolor brushes

3. How to Create the Background

Step 1

In this section, we are going to create the background. Go to Layer > New Fill Layer > Solid Color to create a new solid color fill layer, name it Background color, and choose the color #cccccc.

Creating new solid color fill layer

Step 2

Go to File > Place Embedded, select the texture from the second texture link, and click Place. Then, set the Width and Height of the texture to 83.03% as shown below, and name this layer Background_Texture.

Placing texture

Step 3

Now change the Blending Mode of this layer to Soft Light and set the Opacity to 52%.

Changing blending mode and opacity

Step 4

Go to Layer > New Adjustment Layer > Black & White to create a new black & white adjustment layer, and name it BT_Desaturate.

Creating new black and white adjustment layer

Step 5

Now press Control-Alt-G on your keyboard to create a clipping mask.

Creating clipping mask

4. How to Create the Sketch

Step 1

In this section, we are going to create the sketch. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now press Control-Shift-U on your keyboard to desaturate this layer. Then, go to Filter > Filter Gallery > Stylize > Glowing Edges and set the Edge Width to 1, Edge Brightness to 20, and Smoothness to 15.

Adding glowing edges filter

Step 3

Press Control-I on your keyboard to invert this layer. Then, go to Filter > Sharpen > Unsharp Mask and set the Amount to 500%, Radius to 1 px, and Threshold to 0 levels.

Adding unsharp mask filter

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 29%. Then, name this layer Sketch.

Changing blending mode and opacity

5. How to Create the Watercolor Painting

Step 1

In this section, we are going to create the watercolor painting. Go to Layer > New > Layer to create a new layer and name it Temp.

Creating new layer

Step 2

Now set the foreground color to #000000, choose the Brush Tool (B), and pick some of the watercolor brushes you have created. Then, brush over and around the subject area where you want to create the watercolor painting.

Brushing onto layer

Step 3

Control-click on this layer thumbnail to make a selection of this layer. Then, hide this layer, select the Background layer, and press Control-J on your keyboard to create a new layer using the selection. After that, drag this new layer just below the Temp layer in the Layers panel.

Creating new layer using selection

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 80%. Then, name this layer Watercolor_Painting_1.

Changing blending mode and opacity

Step 5

Right-click on the Temp layer and choose Delete Layer.

Deleting layer

Step 6

Now repeat this process using the different watercolor brushes to create more watercolor painting layers. Here is my result:

Creating more watercolor painting layers

6. How to Create the Main Subject

Step 1

In this section, we are going to create the main subject. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now go to Layer > Layer Mask > Hide All to add a layer mask that hides the whole layer.

Adding layer mask

Step 3

Set the foreground color to #ffffff, choose the Brush Tool (B), pick some of the watercolor brushes that you have created, and brush mostly over the subject area. Feel free to use different watercolor brushes.

Brushing into layer mask

Step 4

Now name this layer Main Subject.

Naming layer

7. How to Make the Final Adjustments

Step 1

In this section, we are going to make some final adjustments. Select the Subject Details layer, go to Layer > New Adjustment Layer > Curves to create a new curves adjustment layer, and name it Color Look.

Creating new curves adjustment layer

Step 2

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting curves

Step 3

Press D on your keyboard to reset the swatches. Then, go to Layer > New Adjustment Layer > Gradient Map to create a new gradient map adjustment layer and name it Overall Contrast.

Creating new gradient map adjustment layer

Step 4

Change the Blending Mode of this layer to Soft Light and set the Opacity to 25%.

Changing blending mode and opacity

Step 5

Go to Layer > New Adjustment Layer > Vibrance to create a new vibrance adjustment layer and name it Overall Vibrance/Saturation.

Creating new vibrance adjustment layer

Step 6

Now Double-click on this layer thumbnail and, in the Properties panel, set the Vibrance to +47 and Saturation to +23.

Adjusting vibrance and saturation

Step 7

Go to Layer > New Adjustment Layer > Levels to create a new levels adjustment layer, and name it Overall Brightness.

Creating new levels adjustment layer

Step 8

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting levels

Step 9

Press Control-Alt-Shift-E on your keyboard to make a screenshot, and then press Control-Shift-U to desaturate this layer. Then, go to Filter > Other > High Pass and set the Radius to 2 px.

Adding high pass filter

Step 10

Now change the Blending Mode of this layer to Soft Light and name it Overall Sharpening.

Changing blending mode

8. How to Crop the Image

Now let’s crop the image to cut out the empty area of the design. Choose the Crop Tool (C) and transform the Crop Box as shown below:

Cropping image

You Made It!

Congratulations, you have succeeded! Here is our final result:

Final result

If you would like to create the even more advanced watercolor effects
shown below, using just a single click and in only a few minutes, then
check out my Aquarelle Photoshop Action.

Using
this action, you can transform your photos into professional aquarelle
artworks with no work at all! You just brush over your photo and play
the action. The action will do all the work for you in just a couple of
minutes, leaving you fully layered and customizable results.

The action is also made so that every time you run the action you will get a unique result,
even if you use the same brushed area. The action will always create
unique variations in the watercolor textures, so you can create an unlimited number of
results! The action also creates 50 preset color looks that you can choose from.

The action comes with a detailed video tutorial that demonstrates how to use the action and customize the results to get the most out of the effect.

Action final results

You may also like:

How to Create a Photo to Watercolor Photoshop Action

Post pobrano z: How to Create a Photo to Watercolor Photoshop Action

Final product image
What You’ll Be Creating

In this tutorial, you will learn how to create an amazing watercolor photo effect in Adobe Photoshop. I will explain everything in so much detail that anyone can create it, even those who have just opened Photoshop for the first time. 

The effect shown above is the one I will show you how to create in this tutorial. If you would like to create the even more advanced watercolor effects shown below, using just a single click and in only a few minutes, then check out my Aquarelle Photoshop Action.

Action final results

What You’ll Need

To recreate the design above, you will need the following resources:

1. How to Start Creating an Action

Step 1

First, open the photo that you want to work with. To open your photo, go to File > Open, choose your photo, and click Open. Now, before we get started, just check a couple of things:

  1. Your photo should be in RGB Color mode, 8 Bits/Channel. To check this, go to Image > Mode.
  2. For best results, your photo size should be 2000–3000 px wide/high. To check this, go to Image > Image Size.
  3. Your photo should be the Background layer. If it is not, go to Layer > New > Background from Layer.
Checking image size and mode

Step 2

Now we need to expand the canvas on the left so we have more space around the subject on this side. Go to Image > Canvas Size and use the settings below:

Expanding canvas

Step 3

Choose the Rectangular Marquee Tool (M), and click and drag to make a selection of the empty white space we have just added. Then, go to Edit > Fill, and set Contents to Content-Aware, Blending to Normal, and Opacity to 100% as shown below. After that, press Control-D on your keyboard to deselect.

Filling selection

2. How to Create the Brushes

In
this section, we are going to create several watercolor brushes we’ll need.
You can check this tutorial to follow the process described and create your own brushes from scratch or using the attached textures, or you can download my TechnicalArt 2 Photoshop Action and get over 60 high-quality and resolution watercolor brushes. Here are the main brushes I’ll be using:

Watercolor brushes

3. How to Create the Background

Step 1

In this section, we are going to create the background. Go to Layer > New Fill Layer > Solid Color to create a new solid color fill layer, name it Background color, and choose the color #cccccc.

Creating new solid color fill layer

Step 2

Go to File > Place Embedded, select the texture from the second texture link, and click Place. Then, set the Width and Height of the texture to 83.03% as shown below, and name this layer Background_Texture.

Placing texture

Step 3

Now change the Blending Mode of this layer to Soft Light and set the Opacity to 52%.

Changing blending mode and opacity

Step 4

Go to Layer > New Adjustment Layer > Black & White to create a new black & white adjustment layer, and name it BT_Desaturate.

Creating new black and white adjustment layer

Step 5

Now press Control-Alt-G on your keyboard to create a clipping mask.

Creating clipping mask

4. How to Create the Sketch

Step 1

In this section, we are going to create the sketch. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now press Control-Shift-U on your keyboard to desaturate this layer. Then, go to Filter > Filter Gallery > Stylize > Glowing Edges and set the Edge Width to 1, Edge Brightness to 20, and Smoothness to 15.

Adding glowing edges filter

Step 3

Press Control-I on your keyboard to invert this layer. Then, go to Filter > Sharpen > Unsharp Mask and set the Amount to 500%, Radius to 1 px, and Threshold to 0 levels.

Adding unsharp mask filter

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 29%. Then, name this layer Sketch.

Changing blending mode and opacity

5. How to Create the Watercolor Painting

Step 1

In this section, we are going to create the watercolor painting. Go to Layer > New > Layer to create a new layer and name it Temp.

Creating new layer

Step 2

Now set the foreground color to #000000, choose the Brush Tool (B), and pick some of the watercolor brushes you have created. Then, brush over and around the subject area where you want to create the watercolor painting.

Brushing onto layer

Step 3

Control-click on this layer thumbnail to make a selection of this layer. Then, hide this layer, select the Background layer, and press Control-J on your keyboard to create a new layer using the selection. After that, drag this new layer just below the Temp layer in the Layers panel.

Creating new layer using selection

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 80%. Then, name this layer Watercolor_Painting_1.

Changing blending mode and opacity

Step 5

Right-click on the Temp layer and choose Delete Layer.

Deleting layer

Step 6

Now repeat this process using the different watercolor brushes to create more watercolor painting layers. Here is my result:

Creating more watercolor painting layers

6. How to Create the Main Subject

Step 1

In this section, we are going to create the main subject. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now go to Layer > Layer Mask > Hide All to add a layer mask that hides the whole layer.

Adding layer mask

Step 3

Set the foreground color to #ffffff, choose the Brush Tool (B), pick some of the watercolor brushes that you have created, and brush mostly over the subject area. Feel free to use different watercolor brushes.

Brushing into layer mask

Step 4

Now name this layer Main Subject.

Naming layer

7. How to Make the Final Adjustments

Step 1

In this section, we are going to make some final adjustments. Select the Subject Details layer, go to Layer > New Adjustment Layer > Curves to create a new curves adjustment layer, and name it Color Look.

Creating new curves adjustment layer

Step 2

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting curves

Step 3

Press D on your keyboard to reset the swatches. Then, go to Layer > New Adjustment Layer > Gradient Map to create a new gradient map adjustment layer and name it Overall Contrast.

Creating new gradient map adjustment layer

Step 4

Change the Blending Mode of this layer to Soft Light and set the Opacity to 25%.

Changing blending mode and opacity

Step 5

Go to Layer > New Adjustment Layer > Vibrance to create a new vibrance adjustment layer and name it Overall Vibrance/Saturation.

Creating new vibrance adjustment layer

Step 6

Now Double-click on this layer thumbnail and, in the Properties panel, set the Vibrance to +47 and Saturation to +23.

Adjusting vibrance and saturation

Step 7

Go to Layer > New Adjustment Layer > Levels to create a new levels adjustment layer, and name it Overall Brightness.

Creating new levels adjustment layer

Step 8

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting levels

Step 9

Press Control-Alt-Shift-E on your keyboard to make a screenshot, and then press Control-Shift-U to desaturate this layer. Then, go to Filter > Other > High Pass and set the Radius to 2 px.

Adding high pass filter

Step 10

Now change the Blending Mode of this layer to Soft Light and name it Overall Sharpening.

Changing blending mode

8. How to Crop the Image

Now let’s crop the image to cut out the empty area of the design. Choose the Crop Tool (C) and transform the Crop Box as shown below:

Cropping image

You Made It!

Congratulations, you have succeeded! Here is our final result:

Final result

If you would like to create the even more advanced watercolor effects
shown below, using just a single click and in only a few minutes, then
check out my Aquarelle Photoshop Action.

Using
this action, you can transform your photos into professional aquarelle
artworks with no work at all! You just brush over your photo and play
the action. The action will do all the work for you in just a couple of
minutes, leaving you fully layered and customizable results.

The action is also made so that every time you run the action you will get a unique result,
even if you use the same brushed area. The action will always create
unique variations in the watercolor textures, so you can create an unlimited number of
results! The action also creates 50 preset color looks that you can choose from.

The action comes with a detailed video tutorial that demonstrates how to use the action and customize the results to get the most out of the effect.

Action final results

You may also like:

How to Create a Photo to Watercolor Photoshop Action

Post pobrano z: How to Create a Photo to Watercolor Photoshop Action

Final product image
What You’ll Be Creating

In this tutorial, you will learn how to create an amazing watercolor photo effect in Adobe Photoshop. I will explain everything in so much detail that anyone can create it, even those who have just opened Photoshop for the first time. 

The effect shown above is the one I will show you how to create in this tutorial. If you would like to create the even more advanced watercolor effects shown below, using just a single click and in only a few minutes, then check out my Aquarelle Photoshop Action.

Action final results

What You’ll Need

To recreate the design above, you will need the following resources:

1. How to Start Creating an Action

Step 1

First, open the photo that you want to work with. To open your photo, go to File > Open, choose your photo, and click Open. Now, before we get started, just check a couple of things:

  1. Your photo should be in RGB Color mode, 8 Bits/Channel. To check this, go to Image > Mode.
  2. For best results, your photo size should be 2000–3000 px wide/high. To check this, go to Image > Image Size.
  3. Your photo should be the Background layer. If it is not, go to Layer > New > Background from Layer.
Checking image size and mode

Step 2

Now we need to expand the canvas on the left so we have more space around the subject on this side. Go to Image > Canvas Size and use the settings below:

Expanding canvas

Step 3

Choose the Rectangular Marquee Tool (M), and click and drag to make a selection of the empty white space we have just added. Then, go to Edit > Fill, and set Contents to Content-Aware, Blending to Normal, and Opacity to 100% as shown below. After that, press Control-D on your keyboard to deselect.

Filling selection

2. How to Create the Brushes

In
this section, we are going to create several watercolor brushes we’ll need.
You can check this tutorial to follow the process described and create your own brushes from scratch or using the attached textures, or you can download my TechnicalArt 2 Photoshop Action and get over 60 high-quality and resolution watercolor brushes. Here are the main brushes I’ll be using:

Watercolor brushes

3. How to Create the Background

Step 1

In this section, we are going to create the background. Go to Layer > New Fill Layer > Solid Color to create a new solid color fill layer, name it Background color, and choose the color #cccccc.

Creating new solid color fill layer

Step 2

Go to File > Place Embedded, select the texture from the second texture link, and click Place. Then, set the Width and Height of the texture to 83.03% as shown below, and name this layer Background_Texture.

Placing texture

Step 3

Now change the Blending Mode of this layer to Soft Light and set the Opacity to 52%.

Changing blending mode and opacity

Step 4

Go to Layer > New Adjustment Layer > Black & White to create a new black & white adjustment layer, and name it BT_Desaturate.

Creating new black and white adjustment layer

Step 5

Now press Control-Alt-G on your keyboard to create a clipping mask.

Creating clipping mask

4. How to Create the Sketch

Step 1

In this section, we are going to create the sketch. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now press Control-Shift-U on your keyboard to desaturate this layer. Then, go to Filter > Filter Gallery > Stylize > Glowing Edges and set the Edge Width to 1, Edge Brightness to 20, and Smoothness to 15.

Adding glowing edges filter

Step 3

Press Control-I on your keyboard to invert this layer. Then, go to Filter > Sharpen > Unsharp Mask and set the Amount to 500%, Radius to 1 px, and Threshold to 0 levels.

Adding unsharp mask filter

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 29%. Then, name this layer Sketch.

Changing blending mode and opacity

5. How to Create the Watercolor Painting

Step 1

In this section, we are going to create the watercolor painting. Go to Layer > New > Layer to create a new layer and name it Temp.

Creating new layer

Step 2

Now set the foreground color to #000000, choose the Brush Tool (B), and pick some of the watercolor brushes you have created. Then, brush over and around the subject area where you want to create the watercolor painting.

Brushing onto layer

Step 3

Control-click on this layer thumbnail to make a selection of this layer. Then, hide this layer, select the Background layer, and press Control-J on your keyboard to create a new layer using the selection. After that, drag this new layer just below the Temp layer in the Layers panel.

Creating new layer using selection

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 80%. Then, name this layer Watercolor_Painting_1.

Changing blending mode and opacity

Step 5

Right-click on the Temp layer and choose Delete Layer.

Deleting layer

Step 6

Now repeat this process using the different watercolor brushes to create more watercolor painting layers. Here is my result:

Creating more watercolor painting layers

6. How to Create the Main Subject

Step 1

In this section, we are going to create the main subject. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now go to Layer > Layer Mask > Hide All to add a layer mask that hides the whole layer.

Adding layer mask

Step 3

Set the foreground color to #ffffff, choose the Brush Tool (B), pick some of the watercolor brushes that you have created, and brush mostly over the subject area. Feel free to use different watercolor brushes.

Brushing into layer mask

Step 4

Now name this layer Main Subject.

Naming layer

7. How to Make the Final Adjustments

Step 1

In this section, we are going to make some final adjustments. Select the Subject Details layer, go to Layer > New Adjustment Layer > Curves to create a new curves adjustment layer, and name it Color Look.

Creating new curves adjustment layer

Step 2

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting curves

Step 3

Press D on your keyboard to reset the swatches. Then, go to Layer > New Adjustment Layer > Gradient Map to create a new gradient map adjustment layer and name it Overall Contrast.

Creating new gradient map adjustment layer

Step 4

Change the Blending Mode of this layer to Soft Light and set the Opacity to 25%.

Changing blending mode and opacity

Step 5

Go to Layer > New Adjustment Layer > Vibrance to create a new vibrance adjustment layer and name it Overall Vibrance/Saturation.

Creating new vibrance adjustment layer

Step 6

Now Double-click on this layer thumbnail and, in the Properties panel, set the Vibrance to +47 and Saturation to +23.

Adjusting vibrance and saturation

Step 7

Go to Layer > New Adjustment Layer > Levels to create a new levels adjustment layer, and name it Overall Brightness.

Creating new levels adjustment layer

Step 8

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting levels

Step 9

Press Control-Alt-Shift-E on your keyboard to make a screenshot, and then press Control-Shift-U to desaturate this layer. Then, go to Filter > Other > High Pass and set the Radius to 2 px.

Adding high pass filter

Step 10

Now change the Blending Mode of this layer to Soft Light and name it Overall Sharpening.

Changing blending mode

8. How to Crop the Image

Now let’s crop the image to cut out the empty area of the design. Choose the Crop Tool (C) and transform the Crop Box as shown below:

Cropping image

You Made It!

Congratulations, you have succeeded! Here is our final result:

Final result

If you would like to create the even more advanced watercolor effects
shown below, using just a single click and in only a few minutes, then
check out my Aquarelle Photoshop Action.

Using
this action, you can transform your photos into professional aquarelle
artworks with no work at all! You just brush over your photo and play
the action. The action will do all the work for you in just a couple of
minutes, leaving you fully layered and customizable results.

The action is also made so that every time you run the action you will get a unique result,
even if you use the same brushed area. The action will always create
unique variations in the watercolor textures, so you can create an unlimited number of
results! The action also creates 50 preset color looks that you can choose from.

The action comes with a detailed video tutorial that demonstrates how to use the action and customize the results to get the most out of the effect.

Action final results

You may also like:

How to Create a Photo to Watercolor Photoshop Action

Post pobrano z: How to Create a Photo to Watercolor Photoshop Action

Final product image
What You’ll Be Creating

In this tutorial, you will learn how to create an amazing watercolor photo effect in Adobe Photoshop. I will explain everything in so much detail that anyone can create it, even those who have just opened Photoshop for the first time. 

The effect shown above is the one I will show you how to create in this tutorial. If you would like to create the even more advanced watercolor effects shown below, using just a single click and in only a few minutes, then check out my Aquarelle Photoshop Action.

Action final results

What You’ll Need

To recreate the design above, you will need the following resources:

1. How to Start Creating an Action

Step 1

First, open the photo that you want to work with. To open your photo, go to File > Open, choose your photo, and click Open. Now, before we get started, just check a couple of things:

  1. Your photo should be in RGB Color mode, 8 Bits/Channel. To check this, go to Image > Mode.
  2. For best results, your photo size should be 2000–3000 px wide/high. To check this, go to Image > Image Size.
  3. Your photo should be the Background layer. If it is not, go to Layer > New > Background from Layer.
Checking image size and mode

Step 2

Now we need to expand the canvas on the left so we have more space around the subject on this side. Go to Image > Canvas Size and use the settings below:

Expanding canvas

Step 3

Choose the Rectangular Marquee Tool (M), and click and drag to make a selection of the empty white space we have just added. Then, go to Edit > Fill, and set Contents to Content-Aware, Blending to Normal, and Opacity to 100% as shown below. After that, press Control-D on your keyboard to deselect.

Filling selection

2. How to Create the Brushes

In
this section, we are going to create several watercolor brushes we’ll need.
You can check this tutorial to follow the process described and create your own brushes from scratch or using the attached textures, or you can download my TechnicalArt 2 Photoshop Action and get over 60 high-quality and resolution watercolor brushes. Here are the main brushes I’ll be using:

Watercolor brushes

3. How to Create the Background

Step 1

In this section, we are going to create the background. Go to Layer > New Fill Layer > Solid Color to create a new solid color fill layer, name it Background color, and choose the color #cccccc.

Creating new solid color fill layer

Step 2

Go to File > Place Embedded, select the texture from the second texture link, and click Place. Then, set the Width and Height of the texture to 83.03% as shown below, and name this layer Background_Texture.

Placing texture

Step 3

Now change the Blending Mode of this layer to Soft Light and set the Opacity to 52%.

Changing blending mode and opacity

Step 4

Go to Layer > New Adjustment Layer > Black & White to create a new black & white adjustment layer, and name it BT_Desaturate.

Creating new black and white adjustment layer

Step 5

Now press Control-Alt-G on your keyboard to create a clipping mask.

Creating clipping mask

4. How to Create the Sketch

Step 1

In this section, we are going to create the sketch. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now press Control-Shift-U on your keyboard to desaturate this layer. Then, go to Filter > Filter Gallery > Stylize > Glowing Edges and set the Edge Width to 1, Edge Brightness to 20, and Smoothness to 15.

Adding glowing edges filter

Step 3

Press Control-I on your keyboard to invert this layer. Then, go to Filter > Sharpen > Unsharp Mask and set the Amount to 500%, Radius to 1 px, and Threshold to 0 levels.

Adding unsharp mask filter

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 29%. Then, name this layer Sketch.

Changing blending mode and opacity

5. How to Create the Watercolor Painting

Step 1

In this section, we are going to create the watercolor painting. Go to Layer > New > Layer to create a new layer and name it Temp.

Creating new layer

Step 2

Now set the foreground color to #000000, choose the Brush Tool (B), and pick some of the watercolor brushes you have created. Then, brush over and around the subject area where you want to create the watercolor painting.

Brushing onto layer

Step 3

Control-click on this layer thumbnail to make a selection of this layer. Then, hide this layer, select the Background layer, and press Control-J on your keyboard to create a new layer using the selection. After that, drag this new layer just below the Temp layer in the Layers panel.

Creating new layer using selection

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 80%. Then, name this layer Watercolor_Painting_1.

Changing blending mode and opacity

Step 5

Right-click on the Temp layer and choose Delete Layer.

Deleting layer

Step 6

Now repeat this process using the different watercolor brushes to create more watercolor painting layers. Here is my result:

Creating more watercolor painting layers

6. How to Create the Main Subject

Step 1

In this section, we are going to create the main subject. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now go to Layer > Layer Mask > Hide All to add a layer mask that hides the whole layer.

Adding layer mask

Step 3

Set the foreground color to #ffffff, choose the Brush Tool (B), pick some of the watercolor brushes that you have created, and brush mostly over the subject area. Feel free to use different watercolor brushes.

Brushing into layer mask

Step 4

Now name this layer Main Subject.

Naming layer

7. How to Make the Final Adjustments

Step 1

In this section, we are going to make some final adjustments. Select the Subject Details layer, go to Layer > New Adjustment Layer > Curves to create a new curves adjustment layer, and name it Color Look.

Creating new curves adjustment layer

Step 2

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting curves

Step 3

Press D on your keyboard to reset the swatches. Then, go to Layer > New Adjustment Layer > Gradient Map to create a new gradient map adjustment layer and name it Overall Contrast.

Creating new gradient map adjustment layer

Step 4

Change the Blending Mode of this layer to Soft Light and set the Opacity to 25%.

Changing blending mode and opacity

Step 5

Go to Layer > New Adjustment Layer > Vibrance to create a new vibrance adjustment layer and name it Overall Vibrance/Saturation.

Creating new vibrance adjustment layer

Step 6

Now Double-click on this layer thumbnail and, in the Properties panel, set the Vibrance to +47 and Saturation to +23.

Adjusting vibrance and saturation

Step 7

Go to Layer > New Adjustment Layer > Levels to create a new levels adjustment layer, and name it Overall Brightness.

Creating new levels adjustment layer

Step 8

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting levels

Step 9

Press Control-Alt-Shift-E on your keyboard to make a screenshot, and then press Control-Shift-U to desaturate this layer. Then, go to Filter > Other > High Pass and set the Radius to 2 px.

Adding high pass filter

Step 10

Now change the Blending Mode of this layer to Soft Light and name it Overall Sharpening.

Changing blending mode

8. How to Crop the Image

Now let’s crop the image to cut out the empty area of the design. Choose the Crop Tool (C) and transform the Crop Box as shown below:

Cropping image

You Made It!

Congratulations, you have succeeded! Here is our final result:

Final result

If you would like to create the even more advanced watercolor effects
shown below, using just a single click and in only a few minutes, then
check out my Aquarelle Photoshop Action.

Using
this action, you can transform your photos into professional aquarelle
artworks with no work at all! You just brush over your photo and play
the action. The action will do all the work for you in just a couple of
minutes, leaving you fully layered and customizable results.

The action is also made so that every time you run the action you will get a unique result,
even if you use the same brushed area. The action will always create
unique variations in the watercolor textures, so you can create an unlimited number of
results! The action also creates 50 preset color looks that you can choose from.

The action comes with a detailed video tutorial that demonstrates how to use the action and customize the results to get the most out of the effect.

Action final results

You may also like:

How to Create a Photo to Watercolor Photoshop Action

Post pobrano z: How to Create a Photo to Watercolor Photoshop Action

Final product image
What You’ll Be Creating

In this tutorial, you will learn how to create an amazing watercolor photo effect in Adobe Photoshop. I will explain everything in so much detail that anyone can create it, even those who have just opened Photoshop for the first time. 

The effect shown above is the one I will show you how to create in this tutorial. If you would like to create the even more advanced watercolor effects shown below, using just a single click and in only a few minutes, then check out my Aquarelle Photoshop Action.

Action final results

What You’ll Need

To recreate the design above, you will need the following resources:

1. How to Start Creating an Action

Step 1

First, open the photo that you want to work with. To open your photo, go to File > Open, choose your photo, and click Open. Now, before we get started, just check a couple of things:

  1. Your photo should be in RGB Color mode, 8 Bits/Channel. To check this, go to Image > Mode.
  2. For best results, your photo size should be 2000–3000 px wide/high. To check this, go to Image > Image Size.
  3. Your photo should be the Background layer. If it is not, go to Layer > New > Background from Layer.
Checking image size and mode

Step 2

Now we need to expand the canvas on the left so we have more space around the subject on this side. Go to Image > Canvas Size and use the settings below:

Expanding canvas

Step 3

Choose the Rectangular Marquee Tool (M), and click and drag to make a selection of the empty white space we have just added. Then, go to Edit > Fill, and set Contents to Content-Aware, Blending to Normal, and Opacity to 100% as shown below. After that, press Control-D on your keyboard to deselect.

Filling selection

2. How to Create the Brushes

In
this section, we are going to create several watercolor brushes we’ll need.
You can check this tutorial to follow the process described and create your own brushes from scratch or using the attached textures, or you can download my TechnicalArt 2 Photoshop Action and get over 60 high-quality and resolution watercolor brushes. Here are the main brushes I’ll be using:

Watercolor brushes

3. How to Create the Background

Step 1

In this section, we are going to create the background. Go to Layer > New Fill Layer > Solid Color to create a new solid color fill layer, name it Background color, and choose the color #cccccc.

Creating new solid color fill layer

Step 2

Go to File > Place Embedded, select the texture from the second texture link, and click Place. Then, set the Width and Height of the texture to 83.03% as shown below, and name this layer Background_Texture.

Placing texture

Step 3

Now change the Blending Mode of this layer to Soft Light and set the Opacity to 52%.

Changing blending mode and opacity

Step 4

Go to Layer > New Adjustment Layer > Black & White to create a new black & white adjustment layer, and name it BT_Desaturate.

Creating new black and white adjustment layer

Step 5

Now press Control-Alt-G on your keyboard to create a clipping mask.

Creating clipping mask

4. How to Create the Sketch

Step 1

In this section, we are going to create the sketch. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now press Control-Shift-U on your keyboard to desaturate this layer. Then, go to Filter > Filter Gallery > Stylize > Glowing Edges and set the Edge Width to 1, Edge Brightness to 20, and Smoothness to 15.

Adding glowing edges filter

Step 3

Press Control-I on your keyboard to invert this layer. Then, go to Filter > Sharpen > Unsharp Mask and set the Amount to 500%, Radius to 1 px, and Threshold to 0 levels.

Adding unsharp mask filter

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 29%. Then, name this layer Sketch.

Changing blending mode and opacity

5. How to Create the Watercolor Painting

Step 1

In this section, we are going to create the watercolor painting. Go to Layer > New > Layer to create a new layer and name it Temp.

Creating new layer

Step 2

Now set the foreground color to #000000, choose the Brush Tool (B), and pick some of the watercolor brushes you have created. Then, brush over and around the subject area where you want to create the watercolor painting.

Brushing onto layer

Step 3

Control-click on this layer thumbnail to make a selection of this layer. Then, hide this layer, select the Background layer, and press Control-J on your keyboard to create a new layer using the selection. After that, drag this new layer just below the Temp layer in the Layers panel.

Creating new layer using selection

Step 4

Now change the Blending Mode of this layer to Multiply and set the Opacity to 80%. Then, name this layer Watercolor_Painting_1.

Changing blending mode and opacity

Step 5

Right-click on the Temp layer and choose Delete Layer.

Deleting layer

Step 6

Now repeat this process using the different watercolor brushes to create more watercolor painting layers. Here is my result:

Creating more watercolor painting layers

6. How to Create the Main Subject

Step 1

In this section, we are going to create the main subject. Select the Background layer and press Control-J on your keyboard to duplicate it. Then, drag this layer to the top of the layers in the Layers panel.

Duplicating layer

Step 2

Now go to Layer > Layer Mask > Hide All to add a layer mask that hides the whole layer.

Adding layer mask

Step 3

Set the foreground color to #ffffff, choose the Brush Tool (B), pick some of the watercolor brushes that you have created, and brush mostly over the subject area. Feel free to use different watercolor brushes.

Brushing into layer mask

Step 4

Now name this layer Main Subject.

Naming layer

7. How to Make the Final Adjustments

Step 1

In this section, we are going to make some final adjustments. Select the Subject Details layer, go to Layer > New Adjustment Layer > Curves to create a new curves adjustment layer, and name it Color Look.

Creating new curves adjustment layer

Step 2

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting curves

Step 3

Press D on your keyboard to reset the swatches. Then, go to Layer > New Adjustment Layer > Gradient Map to create a new gradient map adjustment layer and name it Overall Contrast.

Creating new gradient map adjustment layer

Step 4

Change the Blending Mode of this layer to Soft Light and set the Opacity to 25%.

Changing blending mode and opacity

Step 5

Go to Layer > New Adjustment Layer > Vibrance to create a new vibrance adjustment layer and name it Overall Vibrance/Saturation.

Creating new vibrance adjustment layer

Step 6

Now Double-click on this layer thumbnail and, in the Properties panel, set the Vibrance to +47 and Saturation to +23.

Adjusting vibrance and saturation

Step 7

Go to Layer > New Adjustment Layer > Levels to create a new levels adjustment layer, and name it Overall Brightness.

Creating new levels adjustment layer

Step 8

Now Double-click on this layer thumbnail and, in the Properties panel, enter the settings below:

Adjusting levels

Step 9

Press Control-Alt-Shift-E on your keyboard to make a screenshot, and then press Control-Shift-U to desaturate this layer. Then, go to Filter > Other > High Pass and set the Radius to 2 px.

Adding high pass filter

Step 10

Now change the Blending Mode of this layer to Soft Light and name it Overall Sharpening.

Changing blending mode

8. How to Crop the Image

Now let’s crop the image to cut out the empty area of the design. Choose the Crop Tool (C) and transform the Crop Box as shown below:

Cropping image

You Made It!

Congratulations, you have succeeded! Here is our final result:

Final result

If you would like to create the even more advanced watercolor effects
shown below, using just a single click and in only a few minutes, then
check out my Aquarelle Photoshop Action.

Using
this action, you can transform your photos into professional aquarelle
artworks with no work at all! You just brush over your photo and play
the action. The action will do all the work for you in just a couple of
minutes, leaving you fully layered and customizable results.

The action is also made so that every time you run the action you will get a unique result,
even if you use the same brushed area. The action will always create
unique variations in the watercolor textures, so you can create an unlimited number of
results! The action also creates 50 preset color looks that you can choose from.

The action comes with a detailed video tutorial that demonstrates how to use the action and customize the results to get the most out of the effect.

Action final results

You may also like:

The Current State of Styling Scrollbars

Post pobrano z: The Current State of Styling Scrollbars

If you need to style your scrollbars right now, one option is to use a collection of ::webkit prefixed CSS properties.

See the Pen CSS-Tricks Almanac: Scrollbars by Chris Coyier (@chriscoyier) on CodePen.

Sadly, that doesn’t help out much for Firefox or Edge, or the ecosystem of browsers around those.

But if that’s good enough for what you need, you can get rather classy with it:

See the Pen Custom Scrollbar styling by Devstreak (@devstreak) on CodePen.

There are loads of them on CodePen to browse. It’s a nice thing to abstract with a Sass @mixin as well.

There is good news on this front! The standards bodies that be have moved toward a standardizing methods to style scrollbars, starting with the gutter (or width) of them. The main property will be scrollbar-gutter and Geoff has written it up here. Hopefully Autoprefixer will help us as the spec is finalized and browsers start to implement it so we can start writing the standardized version and get any prefixed versions from that.

But what if we need cross-browser support?

Czytaj dalej The Current State of Styling Scrollbars

24 Cool Event Flyer Templates Using a Flyer Maker (Without Photoshop)

Post pobrano z: 24 Cool Event Flyer Templates Using a Flyer Maker (Without Photoshop)

Let’s face it, not everyone is a designer. But many of us at some point in our lives will be throwing a party, having a garage sale, or organising a business conference or some other event, and at that time we’ll wish we had the design chops to make an eye-catching flyer to let people know about our event. 

If you’ve ever wanted to know how to make a flyer for an event, this article is for you. 

I can hear you saying, „But I’m not creative!” or „But I don’t want to have to learn Photoshop or some other complicated software!” Let me put your mind at ease—you don’t have to be especially creative (though it’s wonderful if you are), nor do you have to learn any complicated software. In fact, I guarantee that you can learn how to make a flyer for an event in a matter of minutes.

How to Make a Flyer Online Using Flyer Creator 

So what’s the secret? Flyer Creator, a fantastic flyer generator from Placeit that will help you make amazing event flyers easily and painlessly.

With the Flyer Creator, all you need to do is select one of our splendid event flyer templates, enter the details of your event, and voila, you’ve not only learnt how to make a flyer online, but you now have a great event flyer that you can download for just $8 to post on your social media account or print and distribute.

Flyer Creator

Of course, you can also use all the wonderful options available in the flyer creator to customise your flyer even more. It’s really easy to experiment with different fonts, change colours, upload your own photos, add a logo, and try different graphics. 

If at any point you begin feeling unsure, you can always try one of the presets below the Flyer Creator. These will give you more flyer design ideas and templates.

Flyer Template Options

Best of all (yes, it gets way cooler), as you create your flyer, you can make use of our state-of-the-art mockup tool at the bottom of the page, which shows your flyer in a range of real-life scenarios. Here’s an example:

Events Flyer

Okay, I’ve talked enough. Let’s get to some more examples of just how wonderful the Flyer Creator is and show you the terrific event flyer templates it can generate for you.

24 Cool Event Flyer Templates You Can Create With Flyer Creator

1. Online Flyer Maker for Artistic Designs

Want to create a cool flyer for your upcoming art class, convention or lecture series? Online Flyer Maker for Artistic Designs is a perfect choice. Drawing inspiration from Henri Matisse’s famous colour explosion paintings, this flyer template is bound to catch the eye of all art lovers in your community and send them flocking to your event.

 Online Flyer Maker for Artistic Designs

2. Online Flyer Maker for Store Launch

Planning a Pop-Up Shop but don’t know how to make a flyer to advertise your launch? Check out the Online Flyer Maker for Store Launch template and you won’t be disappointed. Use the Flyer Creator to select an image that reflects your products or upload your own, tweak colours and fonts, and you’re done.

Online Flyer Maker for Store Launch

3. Event Logistics Flyer Maker

What better way to advertise your services at the next Events Planner Expo, than with the simple and elegant Event Logistics Flyer Maker? Type your business details and specialities in the Flyer Creator, and you’re done. Make your flyer even more personal by uploading your own photos, and wow your potential clients with your work.

Event Logistics Flyer Maker

4. Online Flyer Maker for Fashion Shows 

It doesn’t matter how talented you are if no one sees your work. Use the Online Flyer Maker for Fashion Shows template to create a fabulous flyer for your next fashion show, and all eyes will be on your creations, which means more money in your pocket.

Online Flyer Maker for Fashion Shows

5. Online Flyer Maker for Corporate Events

Customise Online Flyer Maker for Corporate Events to promote your next corporate event. This extremely versatile events flyer will get you started. Use the left side of the flyer creator to add your company’s information, and tweak the colours and graphics on the right. If you want a few more flyer design ideas to choose from, try one of the presets below the flyer creator.

Online Flyer Maker for Corporate Events

6. Online Flyer Maker for Sport Events

Spread the word about your upcoming sporting event with the Online Flyer Maker for Sport Events template. The template uses great photos of athletes in motion, a colourful banner, and bold text that draws and holds attention. Exactly what you want in a flyer.

Online Flyer Maker for Sport Events

7. Birthday Announcements Flyer Template

Have a big milestone birthday coming up and want to have a blowout party? Create an epic flyer to announce the event with the Birthday Announcements Flyer Template. You really don’t need to do much more than choose one of the great photos and add your party details, but of course you can upload your own images and tweak the template to make it as wild or as tame as you like.

 Birthday Announcements Flyer Template

8. Recruitment Flyer Template for HR Firms

Job fairs are great places to find new recruits. If your company is planning to attend, it’s a great idea to create a flyer to attract prospective employees. Our flyer generator provides lots of great flyer design ideas, but if you want a quick and easy template to get you started, Recruitment Flyer Template for HR Firms is a great choice.

Recruitment Flyer Template for HR Firms

9. Contemporary Dance Flyer Maker

Want to make a cool flyer for your next dance recital but don’t know the first thing about how to make a flyer for an event? Don’t worry—Contemporary Dance Flyer Maker will help you create the most beautiful flyer possible. As is the case with the other flyer templates featured here, you have a stunning collection of images, great fonts, and useful graphics to help you personalise your flyer, but what makes this particular flyer so awesome is the colourful gradient overlays which you can add to your flyer to help communicate some of the magic that is dance.

 Contemporary Dance Flyer Maker

10. Event Online Flyer Maker

Looking for the right flyer template to create a super cool, super funky, super colourful flyer for a special event? Event Online Flyer Maker is that flyer template. Choose from a crazy number of abstract backgrounds, add one of the iconic fonts on offer, add your text, and you’ve created a flyer that says FUN and COOL in a few easy steps.

Event Online Flyer Maker

11. Store Opening Online Flyer Maker

Your new store is opening soon, and in all the rush to get last-minute things done, you forgot to get flyers printed. This is exactly the kind of problem that our flyer templates are perfect for solving, and the Store Opening Online Flyer Maker template is a fabulous template for new store owners trying to figure out how to make a flyer online quickly and easily.

Store Opening Online Flyer Maker

12. Flyer Maker for Green Energy Conferences

We can all agree that developing renewable energy resources is one of the most pressing needs of the 21st century. So of course there’s a flyer created specifically for the green energy industry. The Flyer Maker for Green Energy Conferences template is designed specifically to make it easy to whip up event flyers for any kind of green energy event in no time. Best distributed on social media or printed (on recycled paper, of course).

 Flyer Maker for Green Energy Conferences

13. Design a Sci-Fi Film Festival Flyer

Space, the final frontier…. Yes, I’m a Trekkie, and for all those wonderful sci-fi filmmakers out there, Design a Sci-Fi Film Festival Flyer is for you. When you’re ready to launch your much-anticipated brainchild, use our easy flyer creator to customise your flyer and send one my way because I’ll be there.

Design a Sci-Fi Film Festival Flyer

14. DJ Beach Parties Flyer

It’s summer, and you’re planning a beach party. Use the DJ Beach Parties Flyer to create the ultimate party flyer and entice all your friends and their friends to join you for the coolest jam of the summer.

DJ Beach Parties Flyer

15. Garage Sale Flyer Template

Having a garage sale? Let your neighbours know by creating the perfect flyer with the Garage Sale Flyer Template. You’ll love the fabulous, quirky illustrations the template provides, and so will your neighbours and friends. As with all the templates here, you don’t need to do more than add your info to have a cool flyer ready to print.

Garage Sale Flyer Template

16. Flyer Maker for Promotions and Trade Shows 

With Flyer Maker for Promotions and Trade Shows, you can create any number of trade show flyers in no time. Whether you’re working in construction or donuts, there’s a photo to represent your industry and help you create cool flyers.

Flyer Maker for Promotions and Trade Shows

17. Oktoberfest Party Flyer Template

Planning your own Oktoberfest Party? Find out how to make a flyer online easily and quickly with this Oktoberfest Party Flyer Template. The template is easy to customise, but if you can’t be bothered, just add your info and use it as is, knowing you’ve got a great flyer.

Oktoberfest Party Flyer Template

18. Online Flyer Maker for a Flea Market

Let’s just agree that flea markets are epic… or is it just me? Filled with wonderful vintage and second-hand stuff at bargain prices, really what’s not to love? But how’s anyone to find you at the flea market if you don’t create an eye-popping flyer to catch their attention? Use the Online Flyer Maker for a Flea Market to let your potential customers know where you are and what you’ll be selling. You won’t regret it.

Online Flyer Maker for a Flea Market

19. Tourism Trade Fairs Flyer  

Create a beautiful flyer for your next tourism trade fair with the Tourism Trade Fairs Flyer. The template has loads of lovely images and provides wonderful graphics to give your flyers the pizazz they need to catch the attention of potential clients.

Tourism Trade Fairs Flyer

20. Bicycle Race Flyer Template 

Get the word out about your next bike race or performance with the Bicycle Race Flyer Template. Use any of the great images of different kinds of bikers provided, or upload your own to celebrate past participants and motivate new ones.

Bicycle Race Flyer Template

21. Flyer Maker for Event Florists  

If you’re a florist looking for flyer design ideas to advertise your booth at the next expo, look no further than the Flyer Maker for Event Florists template. The template not only offers several options for customisation but also five great presets with variations on the design to match your style.

Flyer Maker for Event Florists

22. Online Flyer Maker for Dance Clubs  

Launching a recruiting drive for your dance club? The Online Flyer Maker for Dance Clubs is perfect for you. No matter what kind of dance your club specialises in, there’s a great image of a dance or dancers that you can use. You also have a wide choice of title fonts, body text fonts, and awesome shapes you can use behind the dancers to emphasise their movements.

23. Conference Flyer Maker

No matter what kind of business you run, you want your event flyers to be a testimony to your professionalism and reliability. Conference Flyer Maker won’t let you down. This modern and stylish template just needs your company information and message and it’s ready for distribution.

Online Flyer Maker for Dance Clubs

24. Halloween Online Flyer Maker 

Halloween has been gaining in popularity around the globe from one year to another, and if you’re planning to throw your own Halloween party and want to create a stunning party flyer, Halloween Online Flyer Maker has got you covered. With a spooky range of photos, drawings, fonts and great graphics to choose from, you can’t help but turn out a flyer that would make Dracula envious.

Halloween Online Flyer Maker

Choosing Your Own Event Flyer

You now know how to make a flyer online, and you now have a pretty awesome list of 24 cool event flyers to choose from. By the way, this is just a small selection of the thousands of flyers available at Placeit, so if none of them quite fits your needs, there are plenty of other great options to choose from. Check them all out, and let us know in the comments below if you’ve found the perfect flyer for your event and which it is. We’d love to hear from you.