大家好,我是 Just,这里是「设计师工作日常」,今天分享的是用 css 绘制一个鼠标图形,并模拟鼠标的滚轮滚动的小动效。
《有趣的css》系列最新实例通过公众号「设计师工作日常」发布。
(目录)
整体效果
使用
animation
来模拟鼠标的滚轮滚动的小动画。
适用于提示页面可以滚动、滚动查看更多内容等页面场景。
核心代码部分,简要说明了写法思路;完整代码在最后,可直接复制到本地运行。
核心代码
html 代码
<div class="cursor27">
<span class="ani-box27"></span>
</div>
div
加span
绘制一个简约的鼠标图形。
css 部分代码
.cursor27{
width: 40px;
height: 60px;
border: 3px solid #333333;
border-radius: 20px;
box-sizing: border-box;
position: relative;
}
.ani-box27{
width: 6px;
height: 14px;
display: block;
position: absolute;
top: 6px;
left: 14px;
background-color: #333333;
border-radius: 3px;
animation: moveeff27 2s ease-in-out infinite;
}
@keyframes moveeff27{
0%{
top: 6px;
}
50%{
top: 16px;
}
100%{
top: 6px;
}
}
给
span
元素增加animation
属性,并设置关键帧使滚动部分上下移动,实现鼠标滚轮滚动的视觉效果。
完整代码如下
html 页面
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>鼠标滚动小动效</title>
</head>
<body>
<div class="app">
<div class="cursor27">
<span class="ani-box27"></span>
</div>
</div>
</body>
</html>
css 样式
/** style.css **/
.app{
width: 100%;
height: 100vh;
background-color: #ffffff;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.cursor27{
width: 40px;
height: 60px;
border: 3px solid #333333;
border-radius: 20px;
box-sizing: border-box;
position: relative;
}
.ani-box27{
width: 6px;
height: 14px;
display: block;
position: absolute;
top: 6px;
left: 14px;
background-color: #333333;
border-radius: 3px;
animation: moveeff27 2s ease-in-out infinite;
}
@keyframes moveeff27{
0%{
top: 6px;
}
50%{
top: 16px;
}
100%{
top: 6px;
}
}
页面渲染效果
以上就是所有代码,以及简单的思路,希望对你有一些帮助或者启发。
CSS 是一种很酷很有趣的计算机语言,在这里跟大家分享一些 CSS 实例 Demo,为学习者获取灵感和思路提供一点帮助,希望你们喜欢。
我是 Just,这里是「设计师工作日常」,求点赞求关注!