我已经建造了像通知一样的盒子。 我现在想要从左侧轻柔地移动它们,而不仅仅是淡化。
我现在,我必须使用.animate而不是.fadeIn。
我想尝试的动画代码是(不知道,如果这样可行):
animate(
document.getElementByClassName('notification'),
"margin-left","px",50,0,200;
"opacity",0,1,200;
);
但是!我不知道如何将其整合到函数中:(
这是我的JS:
var myVar;
function showDiv() {
var random = Math.floor(Math.random() * $('.notification').length);
$('.notification').eq(random).prependTo('.container').fadeIn(200).delay(3000).fadeOut(200);
createRandomInterval();
}
function createRandomInterval() {
setTimeout(showDiv, 500 + Math.random() * 4000);
}
$(document).ready(function() {
createRandomInterval();
});
这是我的完整小提琴:https://jsfiddle.net/brapbg1h/
答案 0 :(得分:1)
这就是我如何使用animate来获得你期望的结果,基本上你将.hide()替换为animate函数
function showDiv() {
var random = Math.floor(Math.random() * $('.notification').length);
$('.notification').eq(random).prependTo('.container').fadeIn(200).delay(3000).animate({
opacity: 0,
marginLeft: '-200px'
}, 'slow', 'linear');
createRandomInterval();
}