Nach einem Hauptinhalt div ich versuche, zufällig Hintergrund schwebende Blasen erstellen dies ist mein Code-Stück
CSS
parent {
left: 0;
top: 0;
width: 400px;
height: 100%;
}
.message {
height: 120px;
width: 120px;
background-color: orange;
color: white;
z-index: -9999;
line-height: 115px;
text-align: center;
font-family: Arial, sans-serif;
font-weight: bold;
-webkit-border-radius: 60px;
-moz-border-radius: 60px;
border-radius: 60px;
}
HTML
<div id="parent">
<div class="message">Hello world</div>
</div>
JS
jQuery.fn.verticalMarquee = function(vertSpeed, horiSpeed) {
this.css('float', 'left');
vertSpeed = vertSpeed || 1;
horiSpeed = 1/horiSpeed || 1;
var windowH = this.parent().height(),
thisH = this.height(),
parentW = (this.parent().width() - this.width()) / 2,
rand = Math.random() * 1000,
current = this;
this.css('margin-top', windowH + thisH);
this.parent().css('overflow', 'hidden');
setInterval(function() {
current.css({
marginTop: function(n, v) {
return parseFloat(v) - vertSpeed;
},
marginLeft: function(n, v) {
return (Math.sin(new Date().getTime() / (horiSpeed * 1000) + rand) + 1) * parentW;
}
});
}, 15);
setInterval(function() {
if (parseFloat(current.css('margin-top')) < -thisH) {
current.css('margin-top', windowH + thisH);
}
}, 250);
};
$('.message').verticalMarquee(1, 1);
alles funktioniert also prima mit 1 zufällig schwebenden Element
aber wenn ich dieselbe Funktion an viele (.message) Elemente anhänge, Ich möchte sie im Hintergrund schweben zufällig so mit einem Start und einem Ende zufälligen Punkt zu machen.
Kann mir jemand helfen?