wagerfield / parallax

Parallax Engine that reacts to the orientation of a smart device

Home Page:http://wagerfield.github.io/parallax/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

infulence the css absolute position?

Carrie999 opened this issue · comments

infulence the css absolute position?

.test{ position: absolute; .test-one{ top:400px; left:100px } .test-two{ top:500px; left:200px; position: relative; } }
<div id="scene" className={cx('test')} > <div className={cx('test-one')} data-depth="0.2">My first Layer!</div> <div className={cx('test-two')} data-depth="0.6">My second Layer!</div> </div>