MINI Sh3ll
var velocityShow = function (promise) {
var n = this
$.Velocity(n.barDom, {
left: 450,
scaleY: 2
}, {
duration: 0
})
$.Velocity(n.barDom, {
left: 0,
scaleY: 1
}, {
easing: [8, 8],
complete: function () {
promise(function (resolve) {
resolve()
})
}
})
}
var velocityClose = function (promise) {
var n = this
$.Velocity(n.barDom, {
left: '+=-50'
}, {
easing: [8, 8, 2],
duration: 350
})
$.Velocity(n.barDom, {
left: 450,
scaleY: .2,
height: 0,
margin: 0
}, {
easing: [8, 8],
complete: function () {
promise(function (resolve) {
resolve()
})
}
})
}
var mojsShow = function (promise) {
var n = this
var Timeline = new mojs.Timeline()
var body = new mojs.Html({
el: n.barDom,
x: { 500: 0, delay: 0, duration: 500, easing: 'elastic.out' },
isForce3d: true,
onComplete: function () {
promise(function (resolve) {
resolve()
})
}
})
var parent = new mojs.Shape({
parent: n.barDom,
width: 200,
height: n.barDom.getBoundingClientRect().height,
radius: 0,
x: { [150]: -150 },
duration: 1.2 * 500,
isShowStart: true
})
n.barDom.style['overflow'] = 'visible'
parent.el.style['overflow'] = 'hidden'
var burst = new mojs.Burst({
parent: parent.el,
count: 10,
top: n.barDom.getBoundingClientRect().height + 75,
degree: 90,
radius: 75,
angle: { [-90]: 40 },
children: {
fill: '#EBD761',
delay: 'stagger(500, -50)',
radius: 'rand(8, 25)',
direction: -1,
isSwirl: true
}
})
var fadeBurst = new mojs.Burst({
parent: parent.el,
count: 2,
degree: 0,
angle: 75,
radius: { 0: 100 },
top: '90%',
children: {
fill: '#EBD761',
pathScale: [.65, 1],
radius: 'rand(12, 15)',
direction: [-1, 1],
delay: .8 * 500,
isSwirl: true
}
})
Timeline.add(body, burst, fadeBurst, parent)
Timeline.play()
}
var mojsClose = function (promise) {
var n = this
new mojs.Html({
el: n.barDom,
x: { 0: 500, delay: 10, duration: 500, easing: 'cubic.out' },
isForce3d: true,
onComplete: function () {
promise(function (resolve) {
resolve()
})
}
}).play()
}
var bouncejsShow = function (promise) {
var n = this
new Bounce()
.translate({
from: { x: 450, y: 0 }, to: { x: 0, y: 0 },
easing: 'bounce',
duration: 1000,
bounces: 4,
stiffness: 3
})
.scale({
from: { x: 1.2, y: 1 }, to: { x: 1, y: 1 },
easing: 'bounce',
duration: 1000,
delay: 100,
bounces: 4,
stiffness: 1
})
.scale({
from: { x: 1, y: 1.2 }, to: { x: 1, y: 1 },
easing: 'bounce',
duration: 1000,
delay: 100,
bounces: 6,
stiffness: 1
})
.applyTo(n.barDom, {
onComplete: function () {
promise(function (resolve) {
resolve()
})
}
})
}
var bouncejsClose = function (promise) {
var n = this
new Bounce()
.translate({
from: { x: 0, y: 0 }, to: { x: 450, y: 0 },
easing: 'bounce',
duration: 500,
bounces: 4,
stiffness: 1
})
.applyTo(n.barDom, {
onComplete: function () {
promise(function (resolve) {
resolve()
})
}
})
}
showSuccessNoty = function (e) {
new Noty({
text:e,
type: 'success',
theme: 'mint',
layout: 'topRight',
timeout: 4000,
animation: {
open: mojsShow,
close: mojsClose
}
}).show();
}
showDangerNoty = function (e) {
new Noty({
text:e,
type: 'error',
theme: 'mint',
layout: 'topRight',
timeout: 4000,
animation: {
open: mojsShow,
close: mojsClose
}
}).show();
}
$('body').on('click', '#example-animatecss', function (e) {
new Noty({
type: 'warning',
text: 'NOTY - a Dependency-free notification library!',
animation: {
open: 'animated bounceInRight', // Animate.css class names
close: 'animated bounceOutRight' // Animate.css class names
}
}).show();
})
function RenderPreviews () {
console.log("run")
Noty.setMaxVisible(999999999);
$themePreview = $(".theme-previews")
$themePreviews = ["mint", "sunset", "relax", "nest", "metroui", "semanticui", "light", "bootstrap-v3", "bootstrap-v4"]
if ($themePreview.length != 0) {
$.each($themePreviews, function (i, theme) {
$(".theme-preview-" + theme).append($("<h4>" + theme + "</h4>"))
console.log(theme)
generatePreview(theme, 'alert')
generatePreview(theme, 'success')
generatePreview(theme, 'warning')
generatePreview(theme, 'error')
generatePreview(theme, 'information')
generatePreview(theme, 'confirm')
});
function generatePreview (theme, type) {
var notes = [];
notes['alert'] = 'Best check yo self, you\'re not looking too good.';
notes['error'] = 'Change a few things up and try submitting again.';
notes['success'] = 'You successfully read this important alert message.';
notes['information'] = 'This alert needs your attention, but it\'s not super important.';
notes['warning'] = '<strong>Warning!</strong> <br /> Best check yo self, you\'re not looking too good.';
notes['confirm'] = 'Do you want to continue?';
new Noty({
text: notes[type],
container: ".theme-preview-" + theme,
type: type,
theme: theme,
dismissQueue: true,
force: false,
closeWith: [],
buttons: (type != 'confirm') ? false : [
Noty.button('YES', 'btn btn-success', function () {
console.log('button 1 clicked');
}),
Noty.button('NO', 'btn btn-error', function () {
console.log('button 2 clicked');
})
]
}).show()
}
} else {
console.log("shit")
}
}
OHA YOOOO