Code Monkey home page Code Monkey logo

sociallinkbuilder's Introduction

THIS PACKAGE IS NOW ABANDONED, PLEASE USE https://github.com/zeraphie/socialLinks INSTEAD

socialLinkBuilder

A jQuery Plugin that builds the social links for you

Demo

A small demo with minimalistic styles can be accessed here: http://codepen.io/zephyr/pen/RRPpJy

Install

Install with bower

bower install social-link-builder

Usage

Default

Adds all of the social icons, without email and telephone.

$(document).ready(function(){
    $('.social').socialLinkBuilder();
});

Removing an icon

Currently all the supported social medias are:

  • facebook - Facebook
  • twitter - Twitter
  • linkedin - LinkedIn
  • gplus - Google Plus

To remove the icon, use the label for the social media and set the isUsed property to false as below.

$(document).ready(function(){
    $('.social').socialLinkBuilder({
        facebook: {
            isUsed: false
        }
    });
});

Extra Links

Email, Telephone and Print links are disabled by default, but if you would like to use them, set the isUsed property to true AND add the mailto and/or tel properties respectively as shown below.

$(document).ready(function(){
    $('.social').socialLinkBuilder({
        print: {
            isUsed: true
        },
        email: {
            isUsed: true,
            mailto: '[email protected]'
        },
        tel: {
            isUsed: true,
            tel: '0123456789'
        }
    });
});

The svg property

All the media services as well as the email and telephone links have an svg property which is appended to the link. This means that you can override the svg with a custom svg or some text if you'd like.

Note: This cannot be empty if you want to override it, it will default to the svg

$(document).ready(function(){
    $('.social').socialLinkBuilder({
        facebook: {
            svg: 'Custom Text'
        }
    });
});

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.