Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2014-11-14 11:29:24
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
transform: matrix(1, 0, 0, 1, 0, 0);
hi,
how this style="transform: matrix(1, 0, 0, 1, 0, 0);"
has added into this div?
<div class="page-container" style="transform: matrix(1, 0, 0, 1, 0, 0);">
i would like to use the same “container slides in” effect.
Offline
Re: transform: matrix(1, 0, 0, 1, 0, 0);
The source of the site says it uses the GSAP Javascript animation library https://greensock.com/gsap with the following plugins:
TweenLite, TweenMax, TimelineLite, TimelineMax, EasePack, CSSPlugin, RoundPropsPlugin, BezierPlugin, AttrPlugin, DirectionalRotationPlugin
The one you’re looking for seems to be the CSSPlugin for GSAP.
Digital nomad, sailing the world on a sailboat: 32fthome.com
Offline
Re: transform: matrix(1, 0, 0, 1, 0, 0);
This css rule is sometimes used to put a fixed
positioned element on a separate layer, to optimize screen repaints when scrolling (which doesn’t seem to work here).
Offline
#4 2014-11-21 08:58:45
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: transform: matrix(1, 0, 0, 1, 0, 0);
thank you guys!
Offline