
The C Share jQuery plugin lets you dynamically generate social share buttons from popular social networks to increase social media engagement.
Requires jQuery and Font Awesome.
Supported social media networks:
- Google+
- Line
- Plurk
- Tumblr
Install & Download:
# Yarn $ yarn add jquery-plugin-c-share # NPM $ npm install jquery-plugin-c-share --save
How to use it:
1. Include the needed jQuery JavaScript library and Font Awesome Iconic Font on the page.
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/fontawesome.css" integrity="sha384-jLuaxTTBR42U2qJ/pm4JRouHkEDHkVqH0T1nyQXn1mZ7Snycpf6Rl25VBNthU4z0" crossorigin="anonymous"> <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"> </script>
2. Download and include the JavaScript c-share.min.js
after jQuery.
<script src="js/c-share.js"></script>
3. Create an element to hold the social share buttons.
<div id="shareBlock"></div>
4. Call the function on the container element and specify the social media networks you want to use.
$('#shareBlock').cShare({ show_buttons: [ 'fb', 'gPlus', 'line', 'plurk', 'weibo', 'twitter', 'tumblr', 'pinterest', 'email' ] });
5. Specify the content you want to share.
$('#shareBlock').cShare({ description: 'Content To Share', });
6. Set the space between social share buttons. Default: 6px.
$('#shareBlock').cShare({ spacing: 10 });
This awesome jQuery plugin is developed by ycs77. For more Advanced Usages, please check the demo page or visit the official website.
- Publication date: 21.01.2019
- Source