Initial Commit

This commit is contained in:
usmannasir
2017-10-24 19:16:36 +05:00
commit 11eae3f9fe
2124 changed files with 528735 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
/* Loading bars */
$(function() {
"use strict";
$(".loadingbar-demo").loadingbar({
direction: "left",
done: function(data) {
$.each(data.items, function(i, item) {
$("<img/>").attr("src", item.media.m).prependTo($("#loading-frame"));
if (i === 2) {
return false;
}
});
}
});
});
$(function() {
"use strict";
$(".loadingbar-demo-right").loadingbar({
direction: "right",
done: function(data) {
$.each(data.items, function(i, item) {
$("<img/>").attr("src", item.media.m).prependTo($("#loading-frame"));
if (i === 2) {
return false;
}
});
}
});
});
$(function() {
"use strict";
$(".loadingbar-demo-down").loadingbar({
direction: "down",
done: function(data) {
$.each(data.items, function(i, item) {
$("<img/>").attr("src", item.media.m).prependTo($("#loading-frame"));
if (i === 2) {
return false;
}
});
}
});
});
$(function() {
"use strict";
$(".loadingbar-demo-up").loadingbar({
direction: "up",
done: function(data) {
$.each(data.items, function(i, item) {
$("<img/>").attr("src", item.media.m).prependTo($("#loading-frame"));
if (i === 2) {
return false;
}
});
}
});
});