Like button Facebook custom

1

Is there any way to customize or build the Facebook button strong>?

I would like a custom because the original does not fit the design of the mobile app I'm developing.

    
asked by anonymous 26.05.2014 / 00:02

1 answer

1

There is a plugin called Fancylike that should serve the purpose.

Include the plugin:

   
<script src="jquery.fancylike.js"></script>

Create a container for the button:

   
<div class="fancylike-fb-like"></div>

Call the plugin, with automatic URL detection :

   
<script type="text/javascript">
$(document).ready(function(){
   $(".fancylike-fb-like").fancylike();
});
</script>
    
26.05.2014 / 00:14