for triggering functions on scroll. All this will be part of my screencast series soon (I started but stuck for the moment) in order to enable people to use this stuff seamless and produce stuff like:
Tim has a template (monarch I think it is called) where specific things are even actionized (just a guess). He is on a combination of animate.css and wow.js (which is library free?) - I have to dig in this as well.
Thanks Thomas, I already know http://daneden.github.io/animate.css/ and find these transitions very nice, but did not want to invest that much time in trial and error how to embeed it.
But I still wonder, how to embed them. For instance:
.box {
background: #333;
-webkit-transition: all 2s ease;
-moz-transition: all 2s ease;
-o-transition: all 2s ease;
transition: all 2s ease;
}
.box:hover {
background: #999;
}
The web-kit, I would use the extended dialog
, but how and where to place the .box:hover?
…
Richard,
I have this code:
.fwNavItem a {
-moz-transition: all .5s;
-webkit-transition: all .5s;
-o-transition: all .5s;
transition: all .5s;
(which trigger the css menu nicely via "after head") out oft a softpress template and thought this is the standard....
Thanks all for your insights.
Hanna
_______________________________________________
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
*Thomas | Well, I believe the forum exists to exchange ideas and technique one already knows and shares.
This is basically correct - if it comes to the use of Freeway - the app, its actions.
But here we talk about hand-hack - or extending Freeway with external stuff. Some call it Coding. Furthermore there are very different methods how to do - I have one, others have different methods.
So there is no:
“Click here - insert this, click OK and done”. That’s the point I’m referring to.
And I had to learn in the past, that Freeway users simply do not want to deal with code. So where to start?
The transition is to add to the item via extended DIV-Styles dialogue. Then you’ll add a class fade in the DIV dialogue of the same item. The following code in the before end head of the page:
I usually put all those “fancy stuff” on an external stylesheet to make it re-usable for other projects as well.
Further notes?
Yes - classes can’t overwrite ID styles. So if you need to overwrite them, either remove the properties for you DIV in Freeway or add a !important behind each properties value.
Furthermore you can check actions forge for CSS3 actions. Probably some things are already covered there without any need of diving in too deep.