Read the statement by Michael Teeuw here.
Random Quotes
-
All the quotes are in the random_quotes.js file. You can change them to anything you want.
-
so i have to add the paramteres (updateintervall etc) in my config ?
because in your example wasn’t that
very thank you!‘modules: [
{
module: ‘random_quotes’,
position: ‘lower_third’,
config: {
updateIntervall=500 // The config property is optional
fadeSpeed=4 // Without a config, a random quote is shown,
category=random // selected from all of the categories available.
}
}
]’ -
Correct, as the documentation shows.
-
@geeflaxx you need to write it down like this
{ module: 'random_quotes', position: 'lower_third', config: { updateIntervall: 500, fadeSpeed: 4, category: 'random' } }
-
very thanksfull an both you help me a lot
i edited it
-
how i can do a wordwrap ? (that the word is under my words) (i hope you understand despite my english skills ^^)
like that :
hello
my name is -
Can’t. It’s a single line each time.
-
-
That’s what I was thinking as well. After all it is just text in a
<div>
isn’t it? -
Actually, yes you could. Basically any HTML tag would (should?) work. I did a ‘
split
’ on a key character so I can apply two different styles, one on the quote, and one on the author. Slightly different approach.