【发布时间】:2017-06-20 22:39:40
【问题描述】:
我检查了不同的粘性笔并过滤掉了魔法属性似乎是粘性子元素的父元素上的过滤器。但是为什么我的粘性不起作用或者我错过了魔法?
http://codepen.io/phng/pen/zNjpbR
scss
.box {
width: 140px;
height: 75px;
border: 1px solid;
margin: auto;
position: relative;
filter: blur(20px) contrast(30);
// animation: gooey 4s infinite;
@keyframes gooey {
50% {
width: 120px;
}
}
.ball {
width: 75px;
height: 75px;
border-radius: 100%;
background-color: #000;
position: absolute;
left: 0;
&:last-child {
right: 0;
left: auto;
}
}
}
【问题讨论】: