Those tutorials are great. bookmarked!
however they seem to all be
jQuery commands. not sure how to implement them with the fullscreen.js method.
I also tested this method which works quite well
#sweets {
position: absolute;
bottom: -286px;
left: 0;
right: 0;
margin: 0 auto;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
}
AND THEN:
.fp-viewing-secondPage #sweets {
transform: translate(0,-350px);
-webkit-transform: translate(0,-350px);
-o-transform: translate(0,-350px);
-moz-transform: translate(0,-350px);
}