css实现无限翻书动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现无限翻书动画效果代码,可作为loading加载动画使用。
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> body { text-align: center; background: white; } .page-wrapper { margin-top: 100px; display: inline-block; position: relative; width: 200px; height: 140px; perspective: 800px; } .page-wrapper .page-page { position: absolute; top: 0; height: 140px; width: 100px; left: 50%; transform-origin: left; transform-style: preserve-3d; transform: rotateY(0); animation: flipBook 3s infinite both ease-in-out; border: 3px solid white; z-index: 1; } .page-wrapper .page-page:nth-child(1) { background-color: lightblue; animat.........完整代码请登录后点击上方下载按钮下载查看
网友评论0