embedo - Social Media Embed Plugin
A simple, fast, lightweight and automagical social media content embedder plugin for web
HTML
<script src="https://cdn.rawgit.com/shobhitsharma/embedo/master/embedo.min.js"></script>
<div id="test-container1"></div>
<div id="test-container2"></div>
<div id="test-container3"></div>
JavaScript
var embedo = new Embedo({
twitter: true,
instagram: true
});
// Calling .load() event [HTMLElement, url|string, options|object{}]
embedo.load(
document.getElementById('test-container1'),
'https://twitter.com/Sh0bhit/status/830544109857275906'
);
// Calling .load() event [HTMLElement, url|string, options|object{}]
embedo.load(
document.getElementById('test-container2'),
'https://www.instagram.com/p/BQZV5JZllrH/'
);
// Calling .load() event [HTMLElement, url|string, options|object{}]
embedo.load(
document.getElementById('test-container3'),
'https://www.youtube.com/watch?v=uNVlQ1yPsto',
{
width: 640,
height: 480
}
);