Divi Theme Animated Double Border Hover Effect 👈👈👈

preview_player
Показать описание
Divi Theme Animated Double Border Hover Effect. We are going to be using the Divi theme to create some great effects in this series of videos. The Divi theme has some great modules and effects. With a little work you can achieve some great eye-catching effects to enhance the look and user experience of your website.
Today we will be demonstrating how to create a simple hover effect. We are going to create an animated double border effect, when you hover anywhere over the module, the border will fade in and get wider. This is a great feature to have on your site.
In this video today, we are going to use a bit of CSS code to style things the way that we want them, so it will better match the rest of the site. Don't let the CSS coding put you off, it is very easy, and any code I write today I will paste below the video for you to use as you wish. You are welcome to copy the code and paste it into your site, CSS is a great thing to learn, so I encourage you to try out some of your own ideas to get familiar with it. You can't break your site with CSS, if something doesn't work simply delete it to return back to how the site was previously.
So, follow along with the video and see how to create an animated double border hover effect, using the great Divi theme.
For more information on the Divi theme, check out our Divi playlists below.

v=rNhjGUsnC3E&list=PLqabIl8dx2wq6ySkW_gPjiPrufojD4la9

---------- CSS CODE USED TODAY ----------

/* Animated Double Border Effect */

.dbrd::before,
.dbrd::after {
content:'';
height:4px;
width:20%;
position:absolute;
transition-duration:.7s;
opacity:0;
}

.dbrd:hover:before,
.dbrd:hover:after {
width:100%;
opacity:1;
}

.dbrd::before {
content:'';
left:50%;
top:0;
border-top:4px solid #0D2B6F;
transform:translate(-50%)
}

.dbrd::after {
content:'';
left:50%;
bottom:0;
border-top:4px solid #0D2B6F;
transform:translate(-50%)
}

---------- RECOMMENDED PLAYLISTS ----------

---------- RECOMMENDED VIDEOS: ----------

---------- SOCIAL MEDIA ----------
Follow what I'm doing on:

#YouTubeTips #WebDesignTips #FreeWebDesignTutorials #BuildYourOwnWebsite
Рекомендации по теме
Комментарии
Автор

Again Thank for another excellent tutorial

aig