This documentation defines use of Quick Info plugin.
To show a person details and social links.
This documentation defines use of Quick Info plugin.
This jQuery plugin creates quick info for a person using bootstarp. Currently this is available in multiple color themes.
Current version: 1.0
Download this plugin and use it to display person details with profile picture, title and social networking links.
First read usage of plugin (see below). If you found any issue or need any help then submit your query at GitHub or email me yoku2010@gmail.com
Download the plugin from github. Import js and css files in your page and call plugin function (see usage).
<!-- CSS files--> <link rel="stylesheet" type="text/css" media="all" href="css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" media="all" href="css/bootstrap-theme.min.css"> <link rel="stylesheet" type="text/css" media="all" href="css/jquery.quick-info.css"> <!-- JS files--> <script type="text/javascript" src="js/libs/jquery-1.12.4.min.js"></script> <script type="text/javascript" src="js/libs/bootstrap.min.js"></script> <script type="text/javascript" src="js/libs/jquery.quick-info.js"></script>
jQuery Quick Info Plugin accepts setting (Json Object) to behave differently.
// Format:
$(selector).quickInfo({key:value, key:value, key:value});
// Examples:
$("#quick_info").quickInfo({
img: "img/yogesh-bw.jpg",
themeColor: "Red",
name: "Yogesh Kumar",
title: " Lead Engineer",
description: "I love programming, singing, making algorithms and cooking. I am good at Python and JavaScript development. Enjoy helping others and learn more. Enthusiast and Passionate about pushing front end development to the next level. Ability to work independently and seek answers.",
socialLinks: [
{
icon: "fa-facebook",
href: "http://www.facebook.com/yoku2010/"
},
{
icon: "fa-twitter",
href: "https://twitter.com/yoku_2010/"
},
{
icon: "fa-linkedin",
href: "http://www.linkedin.com/in/yoku2010/"
},
{
icon: "fa-graduation-cap",
href: "https://yoku2010.github.io/resume/"
}
]
});
Click Here to see demos of Quick Info plugin.
| Property | Default | Description |
|---|---|---|
| img | <path of image> | To define path of person profile picture. |
| themeColor | Red | Quick Info color themes (please find list of colors in Description section). |
| name | Yogesh Kumar | To define name of person. |
| title | Lead Engineer | To define title of person. |
| description | <person description> | To define description of person. |
| socialLinks | <list of social links> | To show all social links with icon. |