新增第113个小实例:圆形剪切图片光标悬停特效

This commit is contained in:
DESKTOP-BM6RJU5\wyanh 2022-02-20 21:24:51 +08:00
parent 50abb7af30
commit 7d2f9a31b4
5 changed files with 144 additions and 1 deletions

View File

@ -116,4 +116,5 @@
109. HTML5+CSS3小实例灵动的文字loading加载特效
110. HTML5+CSS3小实例百看不腻的旋转loading动画
111. HTML5+CSS3+JQuery小实例DIY切换衣服图案
112. HTML5+CSS3小实例纯CSS实现文本背景扫光效果
112. HTML5+CSS3小实例纯CSS实现文本背景扫光效果
113. HTML5+CSS3+JS小实例圆形剪切图片光标悬停特效

102
code/113/113.css Normal file
View File

@ -0,0 +1,102 @@
/* 先引入字体 */
@import url("http://fonts.googleapis.com/css?family=Work+Sans:200,300,400,500,600,700,800,900&display=swap");
*{
/* 初始化 */
margin: 0;
padding: 0;
}
body{
/* 渐变背景 */
background: linear-gradient(to top,#dfe9f3,#fff);
/* 溢出隐藏 */
overflow: hidden;
}
.container{
/* 相对定位 */
position: relative;
/* 最小高度100%窗口高度 */
min-height: 100vh;
/* 弹性布局 水平+垂直居中 */
display: flex;
justify-content: center;
align-items: center;
/* 设置引入的字体 */
font-family: 'Work Sans';
font-size: 60px;
font-weight: 900;
/* 转大写 */
text-transform: uppercase;
}
.text{
/* 相对定位 */
position: relative;
z-index: 1;
/* 行内块元素 */
display: inline-block;
color: #666;
/* 光标移入变小手 */
cursor: pointer;
/* 颜色改变时的过渡效果 */
transition: color 0.35s ease;
}
.hover-text{
/* 绝对定位 */
position: absolute;
z-index: 2;
left: 0;
top: 0;
right: 0;
bottom: 0;
/* 弹性布局 居中 */
display: flex;
justify-content: center;
align-items: center;
color: #fff;
width: 100%;
/* 设置元素不对指针事件做出反应hover、click */
pointer-events: none;
/* --x、--y为自定义属性变量通过var函数可进行调用 */
/* 将元素剪切为一个圆形【75px表示圆的半径后面两个参数表示圆心位置】 */
clip-path: circle(75px at var(--x) var(--y));
/* 默认不透明度为0 */
opacity: 0;
/* 不透明度改变时的过渡效果 */
transition: opacity 0.35s ease;
}
.img-con{
/* 绝对定位 */
position: absolute;
z-index: -2;
top: -75px;
left: -75px;
width: 150px;
height: 150px;
/* 默认不透明度为0 */
opacity: 0;
/* 不透明度改变时的过渡效果 */
transition: opacity 0.35s ease;
}
.hover-img{
/* 块级元素 */
display: block;
width: 100%;
height: 100%;
/* 50%圆角 */
border-radius: 50%;
/* 对图片进行剪切,保留原始比例 */
object-fit: cover;
/* 图片在容器的正中间 */
object-position: center;
/* 调整图片亮度(这里调暗一点点) */
filter: brightness(0.9);
}
/* 鼠标移入文字,对应元素的变化 */
.text:hover{
color: #333;
}
.text:hover ~ .hover-text{
opacity: 1;
}
.text:hover ~ .img-con{
opacity: 1;
}

23
code/113/113.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<title>圆形剪切图片光标悬停特效 - 以此案例祝贺北京冬奥会圆满成功!</title>
<link rel="stylesheet" href="113.css">
</head>
<body>
<div class="container">
<div class="text">beijing 2022</div>
<div class="hover-text">beijing 2022</div>
<div class="img-con">
<img src="images/1.jpg" alt="" class="hover-img">
</div>
</div>
<script src="113.js"></script>
</body>
</html>

17
code/113/113.js Normal file
View File

@ -0,0 +1,17 @@
// 获取要操作的元素
let hover_text=document.querySelector('.hover-text');
let hover_img=document.querySelector('.hover-img');
// 显示内容
function showHoverCon(e){
// 获取鼠标的坐标
let x=e.clientX;
let y=e.clientY;
// 将坐标赋给图片
hover_img.style.transform=`translate(${x}px,${y}px)`;
// 将坐标分别赋值给自定义属性--x、--y
hover_text.style.setProperty('--x',x+'px');
hover_text.style.setProperty('--y',y+'px');
}
// 绑定鼠标移动事件
document.addEventListener('mousemove',showHoverCon);
// 至此完成

BIN
code/113/images/1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 KiB