gsap实现鼠标滚动图片依次展开动画效果代码
代码语言:html
所属分类:加载滚动
代码描述:gsap实现鼠标滚动图片依次展开动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
.notification {
font-size: 0.9rem;
font-family: termina, sans-serif;
position: absolute;
left: 10%;
top: 10%;
width: 200px;
height: 200px;
border-radius: 50%;
background: #b6916d;
color: #3c564f;
display: flex;
justify-content: center;
align-items: center;
z-index: 9;
font-weight: 700;
text-align: center;
padding: 20px;
}
.notification:hover {
background: #bcb8ad;
}.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0