当前位置:网站首页>02.折叠隐藏文字
02.折叠隐藏文字
2022-08-11 04:50:00 【拂晓等明月】
02.折叠隐藏文字
今日份打卡!经验值+1
进度002
今天的有点简单
代码:
<!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>折叠文字</title>
<style>
*{
margin: 0;
padding: 0;
}
body{
background-color: aquamarine;
width: 100%;
/* 整个视口的高度,加上flex使其子元素垂直居中 */
height: 100vh;
display: flex;
}
.box{
/* width: 260px; */
height: 70px;
border-radius: 25px;
background-color: brown;
margin: auto;
position: relative;
}
.my-span{
font-size: 34px;
line-height: 70px;
/* span是行内元素,要变 */
display: inline-block;
}
.yin{
/* 透明度 */
opacity: 0;
width: 0;
transition: all 1s;
}
.yi{
margin-left: 10px;
}
.box:hover .yin{
opacity: 1;
width: 40px;
}
.mont{
margin-top: 30px;
float: left;
width: 10px;
height: 10px;
border-radius: 5px;
background-color: black;
}
.mone{
float: right;
margin-top: 30px;
width: 10px;
height: 10px;
border-radius: 5px;
background-color: black;
}
.box:hover .mont{
opacity: 1;
width: 0px;
height: 0;
}
.box:hover .mone{
opacity: 1;
width: 0px;
height: 0;
}
</style>
</head>
<body>
<div class="box">
<span class="mont"></span>
<span class="my-span yin yi">深</span>
<span class="my-span yin">山</span>
<span class="my-span yin">寻</span>
<span class="my-span yin">折</span>
<span class="my-span yin">桂</span>
<span class="mone"></span>
</div>
</body>
</html>
边栏推荐
猜你喜欢
随机推荐
[Server installation Redis] Centos7 offline installation of redis
每日一题-滑动窗口
Mysql:设置主键自动增长起始值
交换机和路由器技术-27-OSPF路由重分发
Listen to pull out U disk inserted into the message, U disk drive
Bubble sort and heap sort
Snap - rotate the smallest number of an array
【小记】BatchSize的数值是设置的越大越好吗
干货:服务器网卡组技术原理与实践
send_sig: kernel execution flow
「转」“搜索”的原理,架构,实现,实践,面试不用再怕了
走出迷宫的最短路径
如何阅读论文
set_new_handler(0)是什么意思?有什么用?
网络技能树
The basics of binary heap~
The principle, architecture, implementation, practice of "transfer" and "search", no need to be afraid of interviews
Clang Code Model: Error: The clangbackend executable “X:/clangbackend.exe“ could not be started
JVM 垃圾回收的概述与机制
ALSA音频架构 -- aplay播放流程分析