javascript - How to accomplish page open/close effect from center? (like ipad) -
javascript - How to accomplish page open/close effect from center? (like ipad) -
im designing wordpress based site client , wondering if possible have pages load open/close center ipad?
the site ipad icons within of lead other wordpress pages. effect possible?
thanks
i advise using css transitions otherwise incredibly slow. include css , toggle class.
.app{ width:100%;height:100%;position:absolute; -webkit-transform: scale(.0); -webkit-transition-timing-function: ease-out; -webkit-transition-duration: 500ms; } .app.opened{ -webkit-transform: scale(1); }
example: http://jsfiddle.net/z4bp7/
javascript jquery wordpress
Comments
Post a Comment