axisString
The axis of the page turn. Supported axes are "horizontal" and "vertical".
Example
<div id="container">
<div class="back-page">Back Page</div>
<div class="front-page">Front Page</div>
</div>
<script>
// Horizontal page turn
kendo.fx($("#container")).pageturn("horizontal", $(".front-page"), $(".back-page")).play();
// Vertical page turn
kendo.fx($("#container")).pageturn("vertical", $(".front-page"), $(".back-page")).play();
</script>
In this article