Turn.js flip effect, can you roll up the effect by default on the first page?

in doing a mobile page flip effect, now I want to give the first page a default volume to play a prompt role, but through js to set the style, on the mobile side can not adapt, does anyone know how to do it, online and so on

Mar.18,2021

have you solved the crimping effect


you can add a listening function during initialization. After turning the page, if it is the first page, roll up the page

$('.flipbook').turn({
    when: {
        turned(event, page, view) {
            if (page == 1) {
                $(this).turn('peel', 'br');
            }
        }
    }
});
Menu