Added a page-turning UI.
Nice work!
Very interesting- how did you do that ?
Hey !
That looks good ! I love the way the animation displays. Would you mind showing us the way you did it ?
Pretty sure the community will like it.
beautiful
★ The CSS of the animation is as follows.
★ Paste this CSS into rich text.
★ The animation may entertain you for a moment.
<div id="main">
<div id="content"><hr><br>Express flip animation with CSS.<br>
★ The animation moves when the screen is opened.<br>
★ It is necessary to build a separate mechanism for the page transition function. <br><br><hr>
</div>
</div>
<pre><span><style>
#main {
width: 100%;
height: 400px;
background: #fff;
box-shadow: 0px 0px 13px #ccc;
animation: moveimg 1s ;
transform-origin: left center;
}
@keyframes moveimg {
10% {transform: perspective(80px)
scaleZ(-0.2) rotateY(-70deg); }
}
#content {
font-family: 'Noto Serif JP', serif;
font-size: 0.95rem;
line-height: 1.45rem;
padding: 60px 50px 0px 50px ;
}
This is well executed. I played with your syntax and tweaked it to my liking for a project I’m working on.
I just wish I could figure out how you did the separate mechanism for the page transition. I’m(we’re) hoping you’ll share this with us. If this is proprietary, then I understand.
can you share how the page transition function operates? thank you…