How to create Gradient buttons with hover effect in blog post
3 minute read
Howdy, today I come up with modern buttons for your blogger website where you can easily add them to blog posts. I know some of them using simple text links to go with another website or your social media platforms but here is a genuine trick and I give here. Without using, text you can easily add button with URL and Name also for downloading as well for other purposes.
Demo : Gradient Hover Effect Buttons
After writing a post, you will notice a beautiful button with a gradient hover effect. Now your buttons are successfully added.
Let's begin with "How to install Gradient-based Buttons with different Hover Effects".
Features of Gradient-Based Buttons
- Light Weight
- Simple to use with the combination of HTML and CSS
- Cool Gradient Colors
- Different types of Hover Effects
- Easy to customize
Steps to Install Gradient Button Hover
I told you previously, it's easy to customize as well as change color according to your need.
Steps to Add Gradient Buttons with Hover Effects
Just follow the given steps to install...!
Step #1 : Adding CSS Code
Go Theme to your theme EDIT HTML section and search the the code ]]><//b:skin> and paste the following CSS script code above it.
/*This script from PAIRGet*/ /* Gradient Button CSS Codes */ * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}.buttons { margin: 10%; text-align: center;}
.btn-hover { width: 230px; font-size: 16px; font-weight: 600; color: #fff; cursor: pointer; margin: 20px; height: 55px; text-align: center; border: none; background-size: 300% 100%;
border-radius: 18px; moz-transition: all .4s ease-in-out; -o-transition: all .4s ease-in-out; -webkit-transition: all .4s ease-in-out; transition: all .4s ease-in-out;}
.btn-hover:hover { background-position: 100% 0; moz-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; transition: all .3s ease-in-out;}
.btn-hover:focus { outline: none;}
.btn-hover.color-1 { background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673); box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);}.btn-hover.color-2 { background-image: linear-gradient(to right, #f5ce62, #e43603, #fa7199, #e85a19); box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);}.btn-hover.color-3 { background-image: linear-gradient(to right, #667eea, #764ba2, #6B8DD6, #8E37D7); box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);}.btn-hover.color-4 { background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516); box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);}.btn-hover.color-5 { background-image: linear-gradient(to right, #4cacaf, #dd5e97, #4cacaf, #4cacaa); box-shadow: 0 4px 15px 0 #4cacaf;}.btn-hover.color-6 { background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021); box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);}.btn-hover.color-7 { background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645); box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);}.btn-hover.color-8 { background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376); box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);}.btn-hover.color-9 { background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed); box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);}.btn-hover.color-10 { background-image: linear-gradient(to right, #ed6ea0, #ec8c69, #f7186a , #FBB03B); box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);}.btn-hover.color-11 { background-image: linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f); box-shadow: 0 5px 15px rgba(242, 97, 103, .4);}
If you are looking to change the color of the gradient color, change the first two values in background-image after to right. After the last two values, you will change the hover effect.
Step #2. Adding HTML Codes
After following Step #2, when you will be writing a post, you have select one of the button from below mentioned buttons. Also check number of color to show the gradient hover effect in your blog post.
<div class="buttons"> <button href="#" class="btn-hover color-1">BUTTON</button> <button href="#" class="btn-hover color-2">BUTTON</button> <button href="#" class="btn-hover color-3">BUTTON</button> <button href="#" class="btn-hover color-4">BUTTON</button> <button href="#" class="btn-hover color-5">BUTTON</button> <button href="#" class="btn-hover color-6">BUTTON</button> <button href="#" class="btn-hover color-7">BUTTON</button> <button href="#" class="btn-hover color-8">BUTTON</button> <button href="#" class="btn-hover color-9">BUTTON</button> <button href="#" class="btn-hover color-10">BUTTON</button> <button href="#" class="btn-hover color-11">BUTTON</button></div>
- Also, rewrite the href attribute's '#' with your link/URL
- Change the name of BUTTON with your preferred name for the button.
Let's feel free to comment below if you have any trouble while developing your theme.
Post a Comment