Animated Bootstrap Premium Buttons Free [SourceCode]


Today i am sharing a premium Bootstrap and custom css buttons source code which really costs $2 on Envato market. But its is totally free of cost.
In this snippet, bootstrap buttons are modified using css animation and keyframes.
Have a look on source code

HTML


<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      
      <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
      <meta name="description" content="">
      <meta name="author" content="">
      <title>Osahan Bootstrap 4 Buttons Style</title>
      <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
      <link href="./Animated Buttons Style_files/tech_knowledge_animatedButtons.css" rel="stylesheet">
   </head>
   <body>
      <section class="section-padding">
         <div class="container">
            <div class="section-title text-center">
               <span class="badge badge-primary">BUTTONS</span>
               <h2>Buttons Style</h2>
               <span class="section-title-line"></span>
            </div>
            <div class="row page-btn">
               <div class="col-md-9 col-sm-9 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-primary btn-lg">Primary</button>
                  <button type="button" class="btn btn-secondary btn-lg">Secondary</button>
                  <button type="button" class="btn btn-success btn-lg">Success</button>
                  <button type="button" class="btn btn-danger btn-lg">Danger</button>
                  <button type="button" class="btn btn-warning btn-lg">Warning</button>
                  <button type="button" class="btn btn-info btn-lg">Info</button>
                  <button type="button" class="btn btn-light btn-lg">Light</button>
                  <button type="button" class="btn btn-dark btn-lg">Dark</button>
                  <button type="button" class="btn btn-link btn-lg">Link</button>
               </div>
               <div class="col-md-8 col-sm-8 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-primary">Primary</button>
                  <button type="button" class="btn btn-secondary">Secondary</button>
                  <button type="button" class="btn btn-success">Success</button>
                  <button type="button" class="btn btn-danger">Danger</button>
                  <button type="button" class="btn btn-warning">Warning</button>
                  <button type="button" class="btn btn-info">Info</button>
                  <button type="button" class="btn btn-light">Light</button>
                  <button type="button" class="btn btn-dark">Dark</button>
                  <button type="button" class="btn btn-link">Link</button>
               </div>
               <div class="col-md-7 col-sm-7 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-primary btn-sm">Primary</button>
                  <button type="button" class="btn btn-secondary btn-sm">Secondary</button>
                  <button type="button" class="btn btn-success btn-sm">Success</button>
                  <button type="button" class="btn btn-danger btn-sm">Danger</button>
                  <button type="button" class="btn btn-warning btn-sm">Warning</button>
                  <button type="button" class="btn btn-info btn-sm">Info</button>
                  <button type="button" class="btn btn-light btn-sm">Light</button>
                  <button type="button" class="btn btn-dark btn-sm">Dark</button>
                  <button type="button" class="btn btn-link btn-sm">Link</button>
               </div>
               <div class="col-md-6 col-sm-6 mx-auto text-center">
                  <button type="button" class="btn btn-primary btn-xs">Primary</button>
                  <button type="button" class="btn btn-secondary btn-xs">Secondary</button>
                  <button type="button" class="btn btn-success btn-xs">Success</button>
                  <button type="button" class="btn btn-danger btn-xs">Danger</button>
                  <button type="button" class="btn btn-warning btn-xs">Warning</button>
                  <button type="button" class="btn btn-info btn-xs">Info</button>
                  <button type="button" class="btn btn-light btn-xs">Light</button>
                  <button type="button" class="btn btn-dark btn-xs">Dark</button>
                  <button type="button" class="btn btn-link btn-xs">Link</button>
               </div>
            </div>
         </div>
      </section>
      <section class="section-padding border-top">
         <div class="container">
            <div class="section-title text-center">
               <span class="badge badge-primary">BUTTONS</span>
               <h2>Buttons Radius Style</h2>
               <span class="section-title-line"></span>
            </div>
            <div class="row page-btn">
               <div class="col-md-9 col-sm-9 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-primary btn-lg btn-radius">Primary</button>
                  <button type="button" class="btn btn-secondary btn-lg btn-radius">Secondary</button>
                  <button type="button" class="btn btn-success btn-lg btn-radius">Success</button>
                  <button type="button" class="btn btn-danger btn-lg btn-radius">Danger</button>
                  <button type="button" class="btn btn-warning btn-lg btn-radius">Warning</button>
                  <button type="button" class="btn btn-info btn-lg btn-radius">Info</button>
                  <button type="button" class="btn btn-light btn-lg btn-radius">Light</button>
                  <button type="button" class="btn btn-dark btn-lg btn-radius">Dark</button>
                  <button type="button" class="btn btn-link btn-lg btn-radius">Link</button>
               </div>
               <div class="col-md-8 col-sm-8 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-primary btn-radius">Primary</button>
                  <button type="button" class="btn btn-secondary btn-radius">Secondary</button>
                  <button type="button" class="btn btn-success btn-radius">Success</button>
                  <button type="button" class="btn btn-danger btn-radius">Danger</button>
                  <button type="button" class="btn btn-warning btn-radius">Warning</button>
                  <button type="button" class="btn btn-info btn-radius">Info</button>
                  <button type="button" class="btn btn-light btn-radius">Light</button>
                  <button type="button" class="btn btn-dark btn-radius">Dark</button>
                  <button type="button" class="btn btn-link btn-radius">Link</button>
               </div>
               <div class="col-md-7 col-sm-7 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-primary btn-sm btn-radius">Primary</button>
                  <button type="button" class="btn btn-secondary btn-sm btn-radius">Secondary</button>
                  <button type="button" class="btn btn-success btn-sm btn-radius">Success</button>
                  <button type="button" class="btn btn-danger btn-sm btn-radius">Danger</button>
                  <button type="button" class="btn btn-warning btn-sm btn-radius">Warning</button>
                  <button type="button" class="btn btn-info btn-sm btn-radius">Info</button>
                  <button type="button" class="btn btn-light btn-sm btn-radius">Light</button>
                  <button type="button" class="btn btn-dark btn-sm btn-radius">Dark</button>
                  <button type="button" class="btn btn-link btn-sm btn-radius">Link</button>
               </div>
               <div class="col-md-6 col-sm-6 mx-auto text-center">
                  <button type="button" class="btn btn-primary btn-xs btn-radius">Primary</button>
                  <button type="button" class="btn btn-secondary btn-xs btn-radius">Secondary</button>
                  <button type="button" class="btn btn-success btn-xs btn-radius">Success</button>
                  <button type="button" class="btn btn-danger btn-xs btn-radius">Danger</button>
                  <button type="button" class="btn btn-warning btn-xs btn-radius">Warning</button>
                  <button type="button" class="btn btn-info btn-xs btn-radius">Info</button>
                  <button type="button" class="btn btn-light btn-xs btn-radius">Light</button>
                  <button type="button" class="btn btn-dark btn-xs btn-radius">Dark</button>
                  <button type="button" class="btn btn-link btn-xs btn-radius">Link</button>
               </div>
            </div>
         </div>
      </section>
      <section class="section-padding border-top">
         <div class="container">
            <div class="section-title text-center">
               <span class="badge badge-primary">BUTTONS</span>
               <h2>Outline Buttons Style</h2>
               <span class="section-title-line"></span>
            </div>
            <div class="row page-btn">
               <div class="col-md-9 col-sm-9 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-outline-primary btn-lg">Primary</button>
                  <button type="button" class="btn btn-outline-secondary btn-lg">Secondary</button>
                  <button type="button" class="btn btn-outline-success btn-lg">Success</button>
                  <button type="button" class="btn btn-outline-danger btn-lg">Danger</button>
                  <button type="button" class="btn btn-outline-warning btn-lg">Warning</button>
                  <button type="button" class="btn btn-outline-info btn-lg">Info</button>
                  <button type="button" class="btn btn-outline-light btn-lg">Light</button>
                  <button type="button" class="btn btn-outline-dark btn-lg">Dark</button>
                  <button type="button" class="btn btn-outline-link btn-lg">Link</button>
               </div>
               <div class="col-md-8 col-sm-8 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-outline-primary">Primary</button>
                  <button type="button" class="btn btn-outline-secondary">Secondary</button>
                  <button type="button" class="btn btn-outline-success">Success</button>
                  <button type="button" class="btn btn-outline-danger">Danger</button>
                  <button type="button" class="btn btn-outline-warning">Warning</button>
                  <button type="button" class="btn btn-outline-info">Info</button>
                  <button type="button" class="btn btn-outline-light">Light</button>
                  <button type="button" class="btn btn-outline-dark">Dark</button>
                  <button type="button" class="btn btn-outline-link">Link</button>
               </div>
               <div class="col-md-7 col-sm-7 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-outline-primary btn-sm">Primary</button>
                  <button type="button" class="btn btn-outline-secondary btn-sm">Secondary</button>
                  <button type="button" class="btn btn-outline-success btn-sm">Success</button>
                  <button type="button" class="btn btn-outline-danger btn-sm">Danger</button>
                  <button type="button" class="btn btn-outline-warning btn-sm">Warning</button>
                  <button type="button" class="btn btn-outline-info btn-sm">Info</button>
                  <button type="button" class="btn btn-outline-light btn-sm">Light</button>
                  <button type="button" class="btn btn-outline-dark btn-sm">Dark</button>
                  <button type="button" class="btn btn-outline-link btn-sm">Link</button>
               </div>
               <div class="col-md-6 col-sm-6 mx-auto text-center">
                  <button type="button" class="btn btn-outline-primary btn-xs">Primary</button>
                  <button type="button" class="btn btn-outline-secondary btn-xs">Secondary</button>
                  <button type="button" class="btn btn-outline-success btn-xs">Success</button>
                  <button type="button" class="btn btn-outline-danger btn-xs">Danger</button>
                  <button type="button" class="btn btn-outline-warning btn-xs">Warning</button>
                  <button type="button" class="btn btn-outline-info btn-xs">Info</button>
                  <button type="button" class="btn btn-outline-light btn-xs">Light</button>
                  <button type="button" class="btn btn-outline-dark btn-xs">Dark</button>
                  <button type="button" class="btn btn-outline-link btn-xs">Link</button>
               </div>
            </div>
         </div>
      </section>
      <section class="section-padding border-top">
         <div class="container">
            <div class="section-title text-center">
               <span class="badge badge-primary">BUTTONS</span>
               <h2>Outline Buttons Radius Style</h2>
               <span class="section-title-line"></span>
            </div>
            <div class="row page-btn">
               <div class="col-md-9 col-sm-9 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-outline-primary btn-lg btn-radius">Primary</button>
                  <button type="button" class="btn btn-outline-secondary btn-lg btn-radius">Secondary</button>
                  <button type="button" class="btn btn-outline-success btn-lg btn-radius">Success</button>
                  <button type="button" class="btn btn-outline-danger btn-lg btn-radius">Danger</button>
                  <button type="button" class="btn btn-outline-warning btn-lg btn-radius">Warning</button>
                  <button type="button" class="btn btn-outline-info btn-lg btn-radius">Info</button>
                  <button type="button" class="btn btn-outline-light btn-lg btn-radius">Light</button>
                  <button type="button" class="btn btn-outline-dark btn-lg btn-radius">Dark</button>
                  <button type="button" class="btn btn-outline-link btn-lg btn-radius">Link</button>
               </div>
               <div class="col-md-8 col-sm-8 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-outline-primary btn-radius">Primary</button>
                  <button type="button" class="btn btn-outline-secondary btn-radius">Secondary</button>
                  <button type="button" class="btn btn-outline-success btn-radius">Success</button>
                  <button type="button" class="btn btn-outline-danger btn-radius">Danger</button>
                  <button type="button" class="btn btn-outline-warning btn-radius">Warning</button>
                  <button type="button" class="btn btn-outline-info btn-radius">Info</button>
                  <button type="button" class="btn btn-outline-light btn-radius">Light</button>
                  <button type="button" class="btn btn-outline-dark btn-radius">Dark</button>
                  <button type="button" class="btn btn-outline-link btn-radius">Link</button>
               </div>
               <div class="col-md-7 col-sm-7 mx-auto text-center mb-5">
                  <button type="button" class="btn btn-outline-primary btn-sm btn-radius">Primary</button>
                  <button type="button" class="btn btn-outline-secondary btn-sm btn-radius">Secondary</button>
                  <button type="button" class="btn btn-outline-success btn-sm btn-radius">Success</button>
                  <button type="button" class="btn btn-outline-danger btn-sm btn-radius">Danger</button>
                  <button type="button" class="btn btn-outline-warning btn-sm btn-radius">Warning</button>
                  <button type="button" class="btn btn-outline-info btn-sm btn-radius">Info</button>
                  <button type="button" class="btn btn-outline-light btn-sm btn-radius">Light</button>
                  <button type="button" class="btn btn-outline-dark btn-sm btn-radius">Dark</button>
                  <button type="button" class="btn btn-outline-link btn-sm btn-radius">Link</button>
               </div>
               <div class="col-md-6 col-sm-6 mx-auto text-center">
                  <button type="button" class="btn btn-outline-primary btn-xs btn-radius">Primary</button>
                  <button type="button" class="btn btn-outline-secondary btn-xs btn-radius">Secondary</button>
                  <button type="button" class="btn btn-outline-success btn-xs btn-radius">Success</button>
                  <button type="button" class="btn btn-outline-danger btn-xs btn-radius">Danger</button>
                  <button type="button" class="btn btn-outline-warning btn-xs btn-radius">Warning</button>
                  <button type="button" class="btn btn-outline-info btn-xs btn-radius">Info</button>
                  <button type="button" class="btn btn-outline-light btn-xs btn-radius">Light</button>
                  <button type="button" class="btn btn-outline-dark btn-xs btn-radius">Dark</button>
                  <button type="button" class="btn btn-outline-link btn-xs btn-radius">Link</button>
               </div>
            </div>
         </div>
      </section>
   
</body></html>

**Red Highlighted CSS path is used via online Fetch otherwise use offline bootstrap css file

CSS


/*
Template Name: Tech Knowledge Bootstrap 4 Buttons Style
Author: Tabish Rana
Author URI: https://tabishrana.blogspot.com
Version: 1.0
*/
/*
	-- body
	-- Section
	-- Buttons
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
/* body */
body {
     font-family: 'Montserrat', sans-serif;
     font-size: 14px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #3f345f;
}
/* Section */
.section-padding {
    padding: 100px 0;
}
.section-title {
    background-attachment: scroll;
    background-clip: border-box;
    background-image: url("../../img/title-bg.png");
    background-origin: padding-box;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 189px auto;
    padding-bottom: 80px;
}
.section-title .badge {
    margin: 0 0 14px;
}
.section-title-line {
    background: rgba(0, 0, 0, 0) url("../../img/line.png") repeat scroll 0 0;
    display: inline-block;
    height: 5px;
    width: 53px;
}
.page-btn .btn {
    margin: 6px 3px;
}
.badge {
    border-radius: 100px;
    font-size: 11px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: normal;
    padding: 8px 15px;
    text-transform: uppercase;
}
/* Buttons */
.btn-radius {
    border-radius: 100px !important;
}
.btn {
     font-size: 13px;
     font-weight: bold;
     letter-spacing: 1px;
	 border-radius: 2px;
     padding: 13px 28px;
     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.14);
     text-transform: uppercase;
     box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.2);
}
.btn-sm {
    font-size: 11px;
    font-weight: 600;
    padding: 11px 25px;	
}
.btn-lg {
    padding: 18px 49px;
}

.btn-xs {
	font-size: 10px;
	padding: 8px 14px;
}
.btn-primary {
     background: #5a7ce2;
     background: -moz-linear-gradient(-45deg, #5a7ce2 0%, #8283e8 50%, #5c5de8 51%, #565bd8 71%, #575cdb 100%);
     background: -webkit-linear-gradient(-45deg, #5a7ce2 0%,#8283e8 50%,#5c5de8 51%,#565bd8 71%,#575cdb 100%);
     background: linear-gradient(135deg, #5a7ce2 0%,#8283e8 50%,#5c5de8 51%,#565bd8 71%,#575cdb 100%);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5a7ce2', endColorstr='#575cdb',GradientType=1 );
     background-size: 400% 400%;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     border: medium none;
}
.btn-secondary{
     background: #797b7f;
     background: -moz-linear-gradient(-45deg, #797b7f 0%, #b5b8bf 50%, #8e9397 51%, #8e9397 71%, #828589 100%);
     background: -webkit-linear-gradient(-45deg, #797b7f 0%,#b5b8bf 50%,#8e9397 51%,#8e9397 71%,#828589 100%);
     background: linear-gradient(135deg, #797b7f 0%,#b5b8bf 50%,#8e9397 51%,#8e9397 71%,#828589 100%);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#797b7f', endColorstr='#828589',GradientType=1 );
     background-size: 400% 400%;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     border: medium none;
}
.btn-success{
     background: #05ac50;
     background: -moz-linear-gradient(-45deg, #05ac50 0%, #21dd72 50%, #05c44e 51%, #05ac50 71%, #05ac50 100%);
     background: -webkit-linear-gradient(-45deg, #05ac50 0%,#21dd72 50%,#05c44e 51%,#05ac50 71%,#05ac50 100%);
     background: linear-gradient(135deg, #05ac50 0%,#21dd72 50%,#05c44e 51%,#05ac50 71%,#05ac50 100%);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05ac50', endColorstr='#05ac50',GradientType=1 );
     background-size: 400% 400%;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     border: medium none;
}
.btn-danger{
     background: #e81216;
     background: -moz-linear-gradient(-45deg, #e81216 0%, #f45355 50%, #f6290c 51%, #ed0e11 71%, #fc1b21 100%);
     background: -webkit-linear-gradient(-45deg, #e81216 0%,#f45355 50%,#f6290c 51%,#ed0e11 71%,#fc1b21 100%);
     background: linear-gradient(135deg, #e81216 0%,#f45355 50%,#f6290c 51%,#ed0e11 71%,#fc1b21 100%);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e81216', endColorstr='#fc1b21',GradientType=1 );
     background-size: 400% 400%;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     border: medium none;
}
.btn-warning{
     background: #e5ae09;
     background: -moz-linear-gradient(-45deg, #e5ae09 0%, #ffd044 50%, #ffc107 51%, #fc9014 71%, #f1890b 100%);
     background: -webkit-linear-gradient(-45deg, #e5ae09 0%,#ffd044 50%,#ffc107 51%,#fc9014 71%,#f1890b 100%);
     background: linear-gradient(135deg, #e5ae09 0%,#ffd044 50%,#ffc107 51%,#fc9014 71%,#f1890b 100%);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5ae09', endColorstr='#f1890b',GradientType=1 );
     background-size: 400% 400%;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     border: medium none;
     color: #fff !important;
}
.btn-info{
     background: #01a8c1;
     background: -moz-linear-gradient(-45deg, #01a8c1 0%, #2adbf7 50%, #00b5d1 51%, #0aafc9 71%, #0599b1 100%);
     background: -webkit-linear-gradient(-45deg, #01a8c1 0%,#2adbf7 50%,#00b5d1 51%,#0aafc9 71%,#0599b1 100%);
     background: linear-gradient(135deg, #01a8c1 0%,#2adbf7 50%,#00b5d1 51%,#0aafc9 71%,#0599b1 100%);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#01a8c1', endColorstr='#0599b1',GradientType=1 );
     background-size: 400% 400%;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     border: medium none;
}
.btn-light{
     background: #f2f2f2;
     background: -moz-linear-gradient(-45deg, #f2f2f2 0%, #dddddd 50%, #ffffff 51%, #ffffff 71%, #f6f8fb 100%);
     background: -webkit-linear-gradient(-45deg, #f2f2f2 0%,#dddddd 50%,#ffffff 51%,#ffffff 71%,#f6f8fb 100%);
     background: linear-gradient(135deg, #f2f2f2 0%,#dddddd 50%,#ffffff 51%,#ffffff 71%,#f6f8fb 100%);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#f6f8fb',GradientType=1 );
     color: #3f345f !important;
     background-size: 400% 400%;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     border: medium none;
}
.btn-dark{
     background: #343a40;
     background: -moz-linear-gradient(-45deg, #343a40 0%, #667584 50%, #4e5256 51%, #242a30 71%, #343a40 100%);
     background: -webkit-linear-gradient(-45deg, #343a40 0%,#667584 50%,#4e5256 51%,#242a30 71%,#343a40 100%);
     background: linear-gradient(135deg, #343a40 0%,#667584 50%,#4e5256 51%,#242a30 71%,#343a40 100%);
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#343a40', endColorstr='#343a40',GradientType=1 );
     background-size: 400% 400%;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     -webkit-animation: AnimationName 3s ease infinite;
     -moz-animation: AnimationName 3s ease infinite;
     animation: AnimationName 3s ease infinite;
     border: medium none;
}
@-webkit-keyframes AnimationName {
     0%{
        background-position:0% 31%
    }
     50%{
        background-position:100% 70%
    }
     100%{
        background-position:0% 31%
    }
}
@-moz-keyframes AnimationName {
     0%{
        background-position:0% 31%
    }
     50%{
        background-position:100% 70%
    }
     100%{
        background-position:0% 31%
    }
}
@keyframes AnimationName {
     0%{
        background-position:0% 31%
    }
     50%{
        background-position:100% 70%
    }
     100%{
        background-position:0% 31%
    }
}
	

Now finally thing which make this code in properly working state is BOOTSTRAP css file you can include via online CDN
like:


CDN Bootstrap

https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css

Hope You like this effort Please Share with your friends help me to promote my blog and give me ideas to make new source codes for you.

SUBSCRIBE TO OUR NEWSLETTER

Hellodearcode is Web Development agency providing services for Wordpress and Laravel

0 Response to "Animated Bootstrap Premium Buttons Free [SourceCode]"

Post a Comment

Note: only a member of this blog may post a comment.