I am trying to get the second (lower) level bullet points in io2012 to animate separately from their parent bullet point, like this:
>* First level animates by itself
>+ Second level then animates by itself
>* Another first level animates by itself
I've tried several workarounds with HTML like using >* in place of >+ while attempting to indent the bullet with <div style="padding-left: 1em">>* Second level animated by itself.
However this just indents the text but not the bullet point. My experimentation with <li style="padding-left: 1em">...</li> similarly failed.
If there is no HTML solution, does the solution involve either of CSS or JavaScript?
If you are willing to go with a slightly hacky workaround, I have had success inserting
.fragmentat the start of paragraphs and bullets that I wanted to animate (some other things with my slides were conflicting with the>-shortcut, though I still have not figured out what).In any case, this should work, even if it is a bit kludgy.
(
.fragmentadds a div class "fragment" to the following paragraph or item)