0

how resize flipbook of turnjs ? , i use steve jobs sample.

i try

$("#flipbook").turn("size", 800, 1000);

css:

#flipbook {
width:800px;
height:1000px
}

but not work

Thanks for any help !

vallez
  • 117
  • 1
  • 1
  • 10

1 Answers1

0

Script it like this:

<script type="text/javascript">
$("#flipbook").turn({
    width: 800,
    height: 1000,
    autoCenter: true
});

T.Shah
  • 2,768
  • 1
  • 14
  • 13