attractive cta html button - Free Download Attractive Call to Action Buttons In jQuery - rxHTMLButton

Free Download Attractive Call to Action Buttons In jQuery – rxHTMLButton

Posted on

This time I will share jQuery Plugin and tutorial about Attractive Call to Action Buttons In jQuery – rxHTMLButton, hope it will help you in programming stack.

attractive cta html button - Free Download Attractive Call to Action Buttons In jQuery - rxHTMLButton
File Size: 21.7 KB
Views Total: 680
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

rxHTMLButton is a jQuery based button generator that helps developers create unique designs for your CTA buttons to grab user’s attention.

With this plugin, you can quickly create animated, interactive, customizable call to action buttons from any HTML elements like a, button, input, span, etc.

More Features:

  • Subtle hover effects.
  • Change button text on hover.
  • Custom color, text, size, border.
  • Arrow icons to improve click-through rate.
  • 5 built-in themes.

How to use it:

1. Insert the& jQuery rxHTMLButton plugin’s files into the document.

1 <script src="/path/to/jquery.min.js"></script>
2 <link href="/path/to/jquery-rxHtmlButton-min.css" rel="stylesheet" />
3 <script src="/path/to/jquery-rxHtmlButton-min.js"></script>

2. Create a basic CTA button on the page.

1 <a class="alink" href="#">Hover Me</a>
1 $(".alink").rxHtmlButton();

3. Apply a pre-built theme to the button. Accept values: ‘rx01’, ‘rx02’, ‘rx03’, ‘rx04’, ‘rx05’.

1 $(".alink").rxHtmlButton({
2   builtinTheme: "rx03"
3 });

4. Or customize the button with the following options.

01 $(".alink").rxHtmlButton({
02  
03   // background color
04   backgroundColor: "#2176B8",
05  
06   // background color on hover
07   backgroundHoverColor: "",
08  
09   // enable gradient color
10   gradient: true,
11   backgroundBlendColor: "",
12   gradientFrom: "top",
13   backgroundBlendHoverColor: "",
14   gradientIntensity: 30,
15  
16   // customize button border here
17   border: true,
18   borderWidth: 1,
19   borderHoverWidth: "",
20   borderColor: "",
21   borderGradient: !1,
22   borderGradientFrom: "top",
23   borderBlendColor: "",
24   borderHoverColor: "",
25   borderBlendHoverColor: "#168C36",
26   borderIntensity: 5,
27  
28   // custom button text on hover
29   customText: false,
30   customTextval: "Let's Go",
31  
32   // custom font on hover
33   customFont:true,
34   customFontStyle: "raleway",
35   customFontColor: "",
36   customFontHoverColor: "",
37   customFontWeight: "",
38   customFontSize: "",
39  
40   // custom arrow on hover
41   customArrow: false,
42  
43   // or bullet", "double"
44   customArrowStyle: "jet",
45  
46   // enable black overlay
47   blackOverlay: false,
48    
49   // "big" | "calendar" | "full" | "none" | "oval" | "small"
50   roundedCorner: "small",
51  
52   // expand the button on hover
53   hoverExpand: false,
54  
55   // "small" | "medium" | "big"
56   customSize: "medium",
57  
58   // enable animation
59   animate: true
60    
61 });

Changelog:

2021-03-02