JIT
Flipping Book from Image URLs
Create flipping book that has full width of the screen and max height = 600px. Each flipping page must contain images of books from image urls below: https://www.botimeirisoft.com/custom/ARTI1.png https://www.botimeirisoft.com/custom/ARTI10.png https://www.botimeirisoft.com/custom/ARTI11.png https://www.botimeirisoft.com/custom/ARTI12.png https://www.botimeirisoft.com/custom/ARTI13.png https://www.botimeirisoft.com/custom/ARTI14.png https://www.botimeirisoft.com/custom/ARTI15.png https://www.botimeirisoft.com/custom/ARTI16.png https://www.botimeirisoft.com/custom/ARTI17.png https://www.botimeirisoft.com/custom/ARTI19.png https://www.botimeirisoft.com/custom/ARTI2.png https://www.botimeirisoft.com/custom/ARTI20.png https://www.botimeirisoft.com/custom/ARTI21.png https://www.botimeirisoft.com/custom/ARTI22.png https://www.botimeirisoft.com/custom/ARTI23.png https://www.botimeirisoft.com/custom/ARTI24.png https://www.botimeirisoft.com/custom/ARTI25.png https://www.botimeirisoft.com/custom/ARTI3.png https://www.botimeirisoft.com/custom/ARTI4.png https://www.botimeirisoft.com/custom/ARTI5.png https://www.botimeirisoft.com/custom/ARTI6.png https://www.botimeirisoft.com/custom/ARTI7.png https://www.botimeirisoft.com/custom/ARTI8.png https://www.botimeirisoft.com/custom/ARTI9.png

Okay, I can help you create a flipping book effect with the provided images.

We'll use HTML for the structure, CSS for styling and the 3D flip effect, and JavaScript to handle the page creation and flip logic.

This sets up the HTML structure, styles the book and pages for the 3D effect, and uses JavaScript to dynamically load the images and handle the flipping logic with button controls and click interactions on the pages themselves. The book will be responsive within the viewport width and maintain a maximum height of 600px.

Updated files
v1
Set maximum height = 600px of the overall content. The books images must be in center of the pages of the flipping book

Okay, I'll adjust the layout to ensure the entire content (book and buttons) fits within a maximum height of 600px and center the images within each page half.

We'll wrap the book and buttons in a container and use flexbox to manage the layout and sizing.

Now the entire component (book area + buttons) is contained within a div.book-container which respects the max-height: 600px rule. The images within each page are centered vertically and horizontally using flexbox.

Updated files
v2