水滴粘性轮换指示点效果
代码语言:html
所属分类:幻灯片
代码描述:水滴粘性轮换指示点效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
:root {
--point-to-go: 1;
--cur-point: 1;
--dist: 20px;
--start: 10px;
}
* {
transition-property: transform, opacity;
transition-duration: 600ms, 600ms;
transition-timing-function: cubic-bezier(.5, 0, .5, 1);
}
.img {
display: flex;
width: 600px;
height: 400px;
margin-bottom: 30px;
z-index:-1;
overflow: hidden;
filter: sepia(1) hue-rotate(180deg);
}
img {
display: block;
width: 600px;
height: 400px;
object-fit: cover;
margin-right: -600px;
opacity: 0;
transform: translateX(-600px);
tr.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0