Web based version of the eSheep (sheep walking on the desktop). Add a sheep to your webpage using this simple script.
View the Project on GitHub Adrianotiger/web-esheep
* You can see all working demos directly on the GitHub webpage: https://adrianotiger.github.io/web-esheep/samples/
https://adrianotiger.github.io/web-esheep/samples/demo1.html
Load and play the sheep on a webpage with 4 TAG-elements.
var esheep = new eSheep();
esheep.Start();
https://adrianotiger.github.io/web-esheep/samples/demo2.html
Same as Demo 1, but with a custom animation.
var esheep = new eSheep();
esheep.Start("https://[DOMAIN]/[PATH]/[SCRIPTNAME].xml");
https://adrianotiger.github.io/web-esheep/samples/demo3.html
Same as Demo 1, but with some script parameters:
var esheep = new eSheep({allowPets:"all", allowPopup:"yes"});
esheep.Start();