2022-08-23 第五组 张明敏 学习笔记

目录

1.翻书效果(CSS) 

2、幽灵按钮


1.翻书效果(CSS) 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>纯css3实现翻书效果</title>
    <link href="reset.css" rel="stylesheet" type="text/css">
    <style>
        body {
            background-color: #000;
        }
        .perspective {
            margin-top: 100px;
            perspective: 800px;
            transform-style: preserve-3d;
        }
        .book-wrap {
            width: 300px;
            height: 300px;
            position: relative;
            margin: 0 auto;
            transform: rotateX(0deg);
            transform-style: preserve-3d;
        }
        .page {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-origin: left;
            border: 1px solid #1976D2;
        }
        .book-cover {
            background-color: #1976D2;
            color: #ffffff;
            animation: roll 6s ease 0s 2 alternate;
        }
        .book-content {
            background-color: #fff;
            color: #33363C;
        }
        .book-content1{
            animation: roll 3s ease 3s 2 alternate;
        }
        .book-content2 {
            animation: roll 4s ease 2s 2 alternate;
        }
        .book-content3 {
            animation: roll 5s ease 1s 2 alternate;
        }
        @keyframes roll {
            from {transform: rotateY(0)}
            to {transform: rotateY(-180deg)}
        }
    </style>
</head>
<body>
 
<div class="perspective">
    <div class="book-wrap">
        <div class="page book-content">end</div>
        <div class="page book-content book-content1">第三页</div>
        <div class="page book-content book-content2">第二页</div>
        <div class="page book-content book-content3">第一页</div>
        <div class="page book-cover">封面</div>
    </div>
</div>
</body>
</html>

2、幽灵按钮

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
    margin: 0;
	padding: 0;
}

.backimg {
	width: 100%;
	height: 100%;
	min-height: 600px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	z-index: -1;
}

.backimg img {
	width: 100%;
	height: 100%;
}

.btnBox {
	position: absolute;
	width: 100%;
}

.btn {
	width: 200px;
	height: 60px;
	margin: 450px 200px 0 70%;
	background-color: rgba(0,0,0,.8);
	text-align: center;
	position: relative;
}

.btn a {
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	font: bold 20px arial;
	line-height: 60px;
	height: 60px;
}

.btn-border-top, .btn-border-bottom {
	height: 5px;
	background-color: #FFFFFF;
	position: absolute;
	width: 0%;
	transition: .4s;
}

.btn-top-left, .btn-bottom-right {
	height: 0;
	background-color: #FFFFFF;
	position: absolute;
	width: 5px;
	transition: .4s;
}

.btn-border-top {
	right: 0;
	top: 0;
}

.btn-border-bottom {
	left: 0;
	bottom: 0;
}

.btn-top-left {
	left: 0;
	top: 0;
}

.btn-bottom-right {
	right: 0;
	bottom: 0;
}

.btn:hover .btn-border-top {
	width: 100%;
}

.btn:hover .btn-border-bottom {
	width: 100%;
}

.btn:hover .btn-top-left {
	height: 58px;
}

.btn:hover .btn-bottom-right {
	height: 58px;
}

.btn:hover {
	background-color: rgba(0,0,0,0);
}

.btn:hover a {
	color: #FFFFFF;
	text-decoration: none;
}

    </style>
</head>
<body>
    <div class="btnBox">
           <div class="btn">
            <div class="btn-border-top"></div>
            <div class="btn-top-left"></div>
            <a href="#">HTML5</a>
            <div class="btn-bottom-right"></div>
            <div class="btn-border-bottom"></div>
        </div>
    </div>
    
   <!-- <div>HTML5</div>
   <div>CSS3</div>
   <div>Javascript</div> -->
</body>
</html>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值