jquery+svg实现带表情的星级评分动画效果代码
代码语言:html
所属分类:星级评分
代码描述:jquery+svg实现带表情的星级评分动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
.rating {
--active: #FFED76;
--active-pale: rgba(255, 237, 118, .36);
--inactive: #121621;
--face-active: #121621;
--face-inactive: #1C212E;
display: flex;
position: relative;
margin: 50px 0;
}
@media (min-width: 600px) {
.rating {
zoom: 2;
}
}
.rating ul {
margin: 0 auto;
padding: 0;
list-style: none;
display: flex;
color: var(--inactive);
}
.rating ul li {
--face: var(--face-inactive);
cursor: pointer;
position: relative;
}
.rating ul li:before, .rating ul li:after {
content: '';
position: absolute;
z-index: 2;
transition: all .2s ease;
}
.rating ul li:before {
--r: 0deg;
width: 2px;
height: 2px;
border-radius: 1px;
top: 15px;
left: 13px;
-webkit-transform: rotate(var(--r));
transform: rotate(var(--r));
-webkit-filter: drop-shadow(8px 0 0 var(--face));
filter: drop-shadow(8px 0 0 var(--face));
}
.rating ul li span {
width: 2px;
height: 2px;
display: block;
position: absolute;
left: 50%;
top: 50%;
border-radius: 50%;
margin: -1px 0 0 -1px;
-webkit-transform: scale(0.6);
transform: scale(0.6);
opacity: 0;
box-shadow: 16px -16px 0 var(--active-pale), -16px -16px 0 var(--active-pale), -21px 8px 0 var(--active-pale), 21px 8px 0 var(--active-pale), 0 22px 0 var(--active-pale);
}
.rating ul li:nth-child(1):after {
width: 10px;
height: 10px;
top: 20px;
left: 13px;
border-radius: 50%;
border: 1px solid transparent;
border-top-color: var(--face);
}
.rating ul li:nth-child(3):after {
width: 6px;
left: 15px;
top: 20px;
height: 1px;
background: var(--face);
}
.rating ul li:nth-child(4):after {
width: 10px;
height: 10px;
top: 12px;
left: 13px;
border-radius: 50%;
border: 1px solid transparent;
border-bottom-color: var(--face);
}
.rating ul li:nth-child(4).current {
-webkit-animation: active-4 .4s ease;
animation: active-4 .4s ease;
}
.rating ul li:nth-child(4).current span {
-webkit-animation: active-span .32s ease;
animation: active-span .32s ease;
}
.rating ul li:nth-child(5):after {
width: 6px;
height: 3px;
left: 15px;
top: 20px;
border-radius: 0 0 3px 3px;
background: var(--face);
}
.rating ul li:nth-child(5).current {
-webkit-animation: active-5 .72s ease;
animation: active-5 .72s ease;
}
.rating ul li:nth-child(5).current span {
-webkit-animation: active-span .32s ease;
animation: active-span .32s ease;
}
.rating ul li.current {
--face: var(--face-active);
}
.rating ul li.current svg {
color: var(--active);
fill: rgba(0, 0, 0, 0.2);
}
.rating ul li:not(.current) svg {
transition: -webkit-transform .2s ease;
transition: transform .2s ease;
transition: transform .2s ease, -webkit-transform .2s ease;
}
.rating ul li:not(.current):active svg {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
.rating ul li:not(:last-child) {
margin: 0 16px 0 0;
}
.rating ul li:not(:last-child):before {
background: var(--face);
}
.rating ul li:not(:last-child).current:before {
-webkit-animation: blink 3s linear infinite;
animation: blink 3s linear infinite;
}
.rating ul li:last-child:before {
--r: -45deg;
width: 3px;
height: 3px;
border-top: 1px solid var(--face);
border-right: 1px solid var(--face);
border-radius: 0 1px 0 0;
left: 12px;
-webkit-filter: drop-shadow(6px 6px 0 var(--face));
filter: drop-shadow(6px 6px 0 var(--face));
}
.rating svg {
width: 36px;
height: 34px;
display: block;
fill: rgba(0, 0, 0, 0.04);
}
.rating > div {
left: 0;
top: 0;
position: absolute;
display: none;
-webkit-transform: translateX(var(--x));
transform: translateX(var(--x));
transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.265, 1.1) 0.24s;
transition: transform 0.3s cubic-bezier(0, 0, 0.265, 1.1) 0.24s;
transition: transform 0.3s cubic-bezier(0, 0, 0.265, 1.1) 0.24s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.265, 1.1) 0.24s;
}
.rating > div span {
display: block;
}
.rating > div span svg {
color: var(--active);
fill: rgba(0, 0, 0, 0.2);
}
.rating.animate-left > div, .rating.animate-right > div {
display: block;
}
.rating.animate-left > div span, .rating.animate-right > div span {
-webkit-animation: scale .28s linear .24s;
animation: scale .28s linear .24s;
}
.rating.animate-left li.move-to:before {
-webkit-animation: move-to-left .31s ease .36s;
animation: move-to-left .31s ease .36s;
}
.rating.animate-left li.move-from:before {
-webkit-animation: move-to-right .28s ease;
animation: move-to-right .28s ease;
}
.rating.animate-left > div {
-webkit-animation: double-left .32s linear .24s;
animation: double-left .32s linear .24s;
}
.rating.animate-left > div span svg {
-webkit-animation: left .3s ease, right-end .4s ease .4s;
animation: left .3s ease, right-end .4s ease .4s;
}
.rating.animate-right li.move-to:before {
-webkit-animation: move-to-right .31s ease .36s;
animation: move-to-right .31s ease .36s;
}
.rating.animate-right li.move-from:before {
-webkit-animation: move-to-left .28s ease;
animation: move-to-left .28s ease;
}
.rating.animate-right > div {
-webkit-animation: double-right .32s linear .24s;
animation: double-right .32s linear .24s;
}
.rating.animate-right > div span svg {
-webkit-animation: right .3s ease, left-end .4s ease .4s;
animation: right .3s ease, left-end .4s ease .4s;
.........完整代码请登录后点击上方下载按钮下载查看
网友评论0