JSfiddle Follow Button

Have you created something cool on jsfiddle thats become really popular? Why not get some of that fame back by quickly adding a Follow button with this code:

HTML

<iframe src="http://google.com"></iframe>


<div class="sharing bottom left plain">
    You think that's cool? Why not follow me? <br/><br/>
    <div class="addthis_toolbox addthis_default_style">
        <a class="addthis_button_twitter_follow_native" tf:screen_name="thejameskyle"></a>
                                       <!-- Change the "tf:screen_name" ^^^^^^^^^^^^-->
    </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js"></script>
</div>

CSS

.sharing {
font-family: 'Helvetica Neue', Helvetica, Arial, Sans-Serif;
padding: 10px;padding-bottom: 12px;
position: fixed;
color: #252525;
font-size: 0.8em;
background: rgba(0,0,0,0.15);
text-shadow: rgba(0,0,0,0.15) 0px 2px 3px;
    
/** CSS3 **/
-webkit-animation: fadein 2s 1 ease-out;-webkit-border-radius: 5px;
-webkit-box-shadow: rgba(0,0,0,0.15) 0px 2px 3px, inset rgba(0,0,0,0.15) 0px -40px 50px, inset rgba(0,0,0,0.15) 0px -4px 0px;    
-khtml-animation: fadein 2s 1 ease-out;-khtml-border-radius: 5px;
-khtml-box-shadow: rgba(0,0,0,0.15) 0px 2px 3px, inset rgba(0,0,0,0.15) 0px -40px 50px, inset rgba(0,0,0,0.15) 0px -4px 0px;
-moz-animation: fadein 2s 1 ease-out;-moz-border-radius: 5px;
-moz-box-shadow: rgba(0,0,0,0.15) 0px 2px 3px, inset rgba(0,0,0,0.15) 0px -40px 50px, inset rgba(0,0,0,0.15) 0px -4px 0px;
-o-animation: fadein 2s 1 ease-out;-o-border-radius: 5px;
-o-box-shadow: rgba(0,0,0,0.15) 0px 2px 3px, inset rgba(0,0,0,0.15) 0px -40px 50px, inset rgba(0,0,0,0.15) 0px -4px 0px;
animation: fadein 2s 1 ease-out;border-radius: 5px;
box-shadow: rgba(0,0,0,0.15) 0px 2px 3px, inset rgba(0,0,0,0.15) 0px -40px 50px, inset rgba(0,0,0,0.15) 0px -4px 0px;
}

@-webkit-keyframes fadein{0% {opacity: 0;}80% {opacity: 0;}}
@-khtml-keyframes fadein{0% {opacity: 0;}80% {opacity: 0;}}
@-moz-keyframes fadein{0% {opacity: 0;}80% {opacity: 0;}}
@-o-keyframes fadein{0% {opacity: 0;}80% {opacity: 0;}}
@keyframes fadein{0% {opacity: 0;}80% {opacity: 0;}}

/********** POSITIONING **********/
.sharing.top {top: 10px;}
.sharing.bottom {bottom: 10px;}
.sharing.left {left: 10px;}
.sharing.right {right: 10px;}

















/********** IGNORE JUST THE GOOGLE IFRAME **********/
body {padding: 0px;}iframe {position: relative;width: 100%;height: 500px;border: none;}