Alexander Prinzhorn
Alexander Prinzhorn
> Also maybe prefix stuff like React? E.g. behaviorDidAttach? Might as well make all of them explicit, like `appendBehaviorChild` or `behaviorDependencies` or `notifyBehaviors`. In the long run this will avoid...
I'll come back to that later. So far the syntax I came up with is verbose af. ```html ``` This would send a `add` signal to the `css` behavior of...
`layout:center:enter css.add(in-center)` ? Hm, but people would still expect that you can use spaces inside the parenthesis
> I'm using skrollr to set the css top position (for the parallax), then animate() to set the padding-top (so that the two don't conflict). ## > So I'd really...
> So question: can you point me in the right direction on the best way to implement Velocity as my animation engine? I don't think putting velocity into skrollr will...
Can we "simulate" something like shadow DOM? I mean not really, but like this ```html ``` Now Scrollmeister can do whatever the f it wants inside data-scrollmeister-shadow, e.g. appending a...
`` (with `display: contents`)
> (with display: contents) done. And bonus points for automatically cleaning up children when a behavior is detached (#15). Similar to `listen`. The only question is what we do about...
#22 is related is well. Scrollmeister works great so far for static HTML, but DOM manipulation using React, jQuery or plain setAttribute etc. are not done yet.
I had this in mind as well. But I couldn't think of a nice syntax. I'm not sure if this should be possible using data-attributes, because things start getting really...