Cool Button CSS Effects Using The HTML Widget In Elementor Pro

Written by :

Posted on :

Tags :

Share :

Facebook
Twitter
LinkedIn
Reddit
Pinterest

What This CSS Code Does:

This button uses Elementor’s HTML widget to create an awesome hover effect that displays multiple arrows using SVG code. 

Using the CSS property transform: skew(-15deg) on the button outline to create that skewed effect and then 15deg positive to compensate, making the text straight.

Required Plugins:

Elements Used:

How To Implement:

Place the Elementor Display Widget in desired location. Copy and paste the HTML code into the widget. To set the width of the element go to Advanced>Positioning. Set Width to Custom and then set the desired width. 

The text for the button is in the third line of code. You can also easily change the background colors, box shadow color, and the font family in order to better match the branding on your website.

Next, copy and paste the CSS code into the custom CSS area of the element: Advanced>Custom CSS.

The HTML Code:

				
					<div class=”wrapper”>
<a class=”cta” href=”#”>
<span class=”skewed”>NEXT</span>
<span class=”skewed”>
<svg width=”66px” height=”25px” viewBox=”0 0 66 43″ version=”1.1″ xmlns=”http://www.w3.org/2000/svg” xmlns:xlink=”http://www.w3.org/1999/xlink”>
<g id=”arrow” stroke=”none” stroke-width=”1″ fill=”none” fill-rule=”evenodd”>
<path class=”one” d=”M40.1543933,3.89485454 L43.9763149,0.139296592 C44.1708311,-0.0518420739 44.4826329,-0.0518571125 44.6771675,0.139262789 L65.6916134,20.7848311 C66.0855801,21.1718824 66.0911863,21.8050225 65.704135,22.1989893 C65.7000188,22.2031791 65.6958657,22.2073326 65.6916762,22.2114492 L44.677098,42.8607841 C44.4825957,43.0519059 44.1708242,43.0519358 43.9762853,42.8608513 L40.1545186,39.1069479 C39.9575152,38.9134427 39.9546793,38.5968729 40.1481845,38.3998695 C40.1502893,38.3977268 40.1524132,38.395603 40.1545562,38.3934985 L56.9937789,21.8567812 C57.1908028,21.6632968 57.193672,21.3467273 57.0001876,21.1497035 C56.9980647,21.1475418 56.9959223,21.1453995 56.9937605,21.1432767 L40.1545208,4.60825197 C39.9574869,4.41477773 39.9546013,4.09820839 40.1480756,3.90117456 C40.1501626,3.89904911 40.1522686,3.89694235 40.1543933,3.89485454 Z” fill=”#FFFFFF”></path>
<path class=”two” d=”M20.1543933,3.89485454 L23.9763149,0.139296592 C24.1708311,-0.0518420739 24.4826329,-0.0518571125 24.6771675,0.139262789 L45.6916134,20.7848311 C46.0855801,21.1718824 46.0911863,21.8050225 45.704135,22.1989893 C45.7000188,22.2031791 45.6958657,22.2073326 45.6916762,22.2114492 L24.677098,42.8607841 C24.4825957,43.0519059 24.1708242,43.0519358 23.9762853,42.8608513 L20.1545186,39.1069479 C19.9575152,38.9134427 19.9546793,38.5968729 20.1481845,38.3998695 C20.1502893,38.3977268 20.1524132,38.395603 20.1545562,38.3934985 L36.9937789,21.8567812 C37.1908028,21.6632968 37.193672,21.3467273 37.0001876,21.1497035 C36.9980647,21.1475418 36.9959223,21.1453995 36.9937605,21.1432767 L20.1545208,4.60825197 C19.9574869,4.41477773 19.9546013,4.09820839 20.1480756,3.90117456 C20.1501626,3.89904911 20.1522686,3.89694235 20.1543933,3.89485454 Z” fill=”#FFFFFF”></path>
<path class=”three” d=”M0.154393339,3.89485454 L3.97631488,0.139296592 C4.17083111,-0.0518420739 4.48263286,-0.0518571125 4.67716753,0.139262789 L25.6916134,20.7848311 C26.0855801,21.1718824 26.0911863,21.8050225 25.704135,22.1989893 C25.7000188,22.2031791 25.6958657,22.2073326 25.6916762,22.2114492 L4.67709797,42.8607841 C4.48259567,43.0519059 4.17082418,43.0519358 3.97628526,42.8608513 L0.154518591,39.1069479 C-0.0424848215,38.9134427 -0.0453206733,38.5968729 0.148184538,38.3998695 C0.150289256,38.3977268 0.152413239,38.395603 0.154556228,38.3934985 L16.9937789,21.8567812 C17.1908028,21.6632968 17.193672,21.3467273 17.0001876,21.1497035 C16.9980647,21.1475418 16.9959223,21.1453995 16.9937605,21.1432767 L0.15452076,4.60825197 C-0.0425130651,4.41477773 -0.0453986756,4.09820839 0.148075568,3.90117456 C0.150162624,3.89904911 0.152268631,3.89694235 0.154393339,3.89485454 Z” fill=”#FFFFFF”></path>
</g>
</svg>
</span>
</a>
</div>
				
			

The CSS Code:

				
					.cta {
display: flex;
padding: 15px 20px;
text-decoration: none;
font-family: ‘Futura PT’, sans-serif;
font-style: italic;
font-weight: bold;
font-size: 40px;
color: white;
background: #0AEEF4;
transition: 1s;
box-shadow: 6px 6px 0 #DF017D !important;
transform: skewX(-15deg);
justify-content: center;
}

.cta:focus {
outline: none;
}

.cta:hover {
transition: 0.5s;
box-shadow: 10px 10px 0 #FFF225 !important;
color: #fff;
}

.cta .skewed:nth-child(2) {
transition: 0.5s;
margin-right: 0px;
}

.cta:hover .skewed:nth-child(2) {
transition: 0.5s;
margin-right: 45px;
}

.skewed {
transform: skewX(15deg)
}

.skewed:nth-child(2) {
width: 20px;
margin-left: 30px;
position: relative;
top: 12%;
}

/**************SVG****************/

path.one {
transition: 0.4s;
transform: translateX(-60%);
}

path.two {
transition: 0.5s;
transform: translateX(-30%);
}

.cta:hover path.three {
animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
transform: translateX(0%);
animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
transform: translateX(0%);
animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
0% {
fill: white;
}
50% {
fill: #FFF225;
}
100% {
fill: white;
}
}
				
			

One Response

  1. Hi there,

    Thanks for the awsome button design! When i paste the code in an html element like you explain i can see the great looking button in my elementor canvas.

    However when i check the page on the front end i can only see the code show up in the container and not the button. Could you tell me what could be wrong? I have deactivated all plugins except elementor and updated everything in a staging site that wasn’t it 🙂

    Here is a vid to show you what i am seeing: https://www.loom.com/share/8cea349aa8764e1a8bbab1cf9d84feb1

    Kind regards,

    Dominic

Leave a Reply

Your email address will not be published. Required fields are marked *

READY FOR A TOTALLY AWESOME WEBSITE?