Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
QiShaoXuan committed May 31, 2019
1 parent e604f7f commit 78b2b68
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
80 changes: 80 additions & 0 deletions docs/.vuepress/components/ripple/scssRipple.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<style lang="scss" scoped>
.ripple-container{
height:400px;
}
.wave{
position:absolute;
top:calc((100% - 30px)/2);
left:calc((100% - 30px)/2);
width:30px;
height:30px;
border-radius:300px;
background:url(../../public/images/bg1.jpg);
background-attachment:fixed;
background-position:center center;
}
.wave0{
z-index:2;
background-size:auto 106%;
animation:w 1s forwards;
}
.wave1{
z-index:3;
background-size:auto 102%;
animation:w 1s .2s forwards;
}
.wave2{
z-index:4;
background-size:auto 104%;
animation:w 1s .4s forwards;
}
.wave3{
z-index:5;
background-size:auto 101%;
animation:w 1s .5s forwards;
}
.wave4{
z-index:6;
background-size:auto 102%;
animation:w 1s .8s forwards;
}
.wave5{
z-index:7;
background-size:auto 100%;
animation:w 1s 1s forwards;
}
@keyframes w{
0%{
top:calc((100% - 30px)/2);
left:calc((100% - 30px)/2);
width:30px;
height:30px;
}
100%{
top:calc((100% - 300px)/2);
left:calc((100% - 300px)/2);
width:300px;
height:300px;
}
}
</style>

<template>
<div class="ripple-container">
<div class="wave wave5" ></div>
<div class="wave wave4"></div>
<div class="wave wave3"></div>
<div class="wave wave2"></div>
<div class="wave wave1"></div>
<div class="wave wave0"></div>
</div>
</template>

<script>
export default {
name: 'scssWave',
data() {
return {}
}
}
</script>
5 changes: 5 additions & 0 deletions docs/notCSS/ripple.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## SCSS
<ripple-scssRipple/>


## JS
:::tip
具体使用请查看 <a href="https://github.com/QiShaoXuan/rhythm-ripple">https://github.com/QiShaoXuan/rhythm-ripple</a>
:::
Expand Down

0 comments on commit 78b2b68

Please sign in to comment.