文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么使用html+css实现页面书本翻页特效

2023-07-05 17:10

关注

本篇内容主要讲解“怎么使用html+css实现页面书本翻页特效”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么使用html+css实现页面书本翻页特效”吧!

效果:

怎么使用html+css实现页面书本翻页特效

实现:

1.定义标签,shu是书本,feng是封面,wen是文字内容。

  <div class="shu">       <div class="feng"></div>            <div class="wen">           <h4 >Life of Pi</h4>           <p >            He lives in Scarborough. He's a small, slim man – nomore than five foot five. Dark hair, dark eyes. Hair greyingat the temples. Can't be older than forty.            leasingcoffee-coloured complexion1. Mild fall weather, yet puts on abig winter parka with fur-lined hood2 for the walk to thediner.            </p>       </div>   </div>

2.定义书本的基本属性,宽高,阴影等,伪类是下面和右面那两条阴影。

.shu{            position: relative;            width: 300px;            height: 400px;            background-color: rgba(255, 255, 255, 0.774);            transform-style:  preserve-3d;            box-shadow:   300px 0px 30px  rgb(0, 0, 0,.6) inset;            transition: 1s cubic-bezier(.79,.34,.47,.92);        }        .shu::after{            content: '';            position: absolute;            height: 3px;            width: 303px;            left: 0px;            bottom: -3px;                      background-image: linear-gradient(to right,rgb(71, 68, 68),rgba(124, 120, 120, 0.3) );            border-bottom-left-radius: 5px;        }        .shu::before{            content: '';            position: absolute;            width: 3px;            height: 100%;            right: -3px;            top: 0px;            background-color: rgb(112, 108, 108);           background-image: linear-gradient(to top,rgb(114, 111, 111),rgba(90, 87, 87, 0.5) );;            border-top-right-radius: 3px;        }

transition: 1s cubic-bezier(.79,.34,.47,.92); 变化时间为1s,运动曲线为 cubic-bezier(.79,.34,.47,.92),这个可以去一个网站自定义生成:点我。

怎么使用html+css实现页面书本翻页特效

3.鼠标经过,阴影变化,然后书本向左旋转:

 .shu:hover{            box-shadow:   30px 0px 30px  rgb(0, 0, 0,.6) inset;            transform: rotate(-5deg);        }

transform: rotate(-5deg);旋转;

4.封面的基本样式:

 .feng{            position: absolute;            width: 100%;            height: 100%;            z-index: 2;            background-image: url(4.jpg);            background-size: 100% ;            transform-origin: left;            transition: 1s cubic-bezier(.79,.34,.47,.92);            border-top-left-radius: 2px;            border-bottom-left-radius: 2px;                              }

transform-origin: left; 封面旋转的位置,旋转点

5.封面旋转:

 .shu:hover .feng{            transform: rotateY(-140deg);                    }

文本的基本属性:

 .wen{            position: absolute;            top: 0;            left: 0;            width: 100%;            height: 100%;            font-family: 'fangsong';            text-align: left;        }

完整代码:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Document</title>    <style>        *{            margin: 0;            padding: 0;            box-sizing: border-box;        }        body{            height: 100vh;            background-image: radial-gradient(white,black);                       display: flex;            justify-content: center;            align-items: center;        }        .shu{            position: relative;            width: 300px;            height: 400px;            background-color: rgba(255, 255, 255, 0.774);            transform-style:  preserve-3d;            box-shadow:   300px 0px 30px  rgb(0, 0, 0,.6) inset;            transition: 1s cubic-bezier(.79,.34,.47,.92);        }        .shu::after{            content: '';            position: absolute;            height: 3px;            width: 303px;            left: 0px;            bottom: -3px;                      background-image: linear-gradient(to right,rgb(71, 68, 68),rgba(124, 120, 120, 0.3) );            border-bottom-left-radius: 5px;        }        .shu::before{            content: '';            position: absolute;            width: 3px;            height: 100%;            right: -3px;            top: 0px;            background-color: rgb(112, 108, 108);           background-image: linear-gradient(to top,rgb(114, 111, 111),rgba(90, 87, 87, 0.5) );;            border-top-right-radius: 3px;        }        .shu:hover{            box-shadow:   30px 0px 30px  rgb(0, 0, 0,.6) inset;            transform: rotate(-5deg);        }        .feng{            position: absolute;            width: 100%;            height: 100%;            z-index: 2;            background-image: url(4.jpg);            background-size: 100% ;            transform-origin: left;            transition: 1s cubic-bezier(.79,.34,.47,.92);            border-top-left-radius: 2px;            border-bottom-left-radius: 2px;                              }        .shu:hover .feng{            transform: rotateY(-140deg);                    }                    .wen{            position: absolute;            top: 0;            left: 0;            width: 100%;            height: 100%;            font-family: 'fangsong';            text-align: left;        }    </style></head><body>   <div class="shu">       <div class="feng"></div>            <div class="wen">           <h4 >Life of Pi</h4>           <p >            He lives in Scarborough. He's a small, slim man – nomore than five foot five. Dark hair, dark eyes. Hair greyingat the temples. Can't be older than forty.            leasingcoffee-coloured complexion1. Mild fall weather, yet puts on abig winter parka with fur-lined hood2 for the walk to thediner.            </p>       </div>   </div></body></html>

到此,相信大家对“怎么使用html+css实现页面书本翻页特效”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯