123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797 |
- <template>
- <!-- 司南排名图 -->
- <div class="wrap-container sn-container">
- <div class="sn-content">
- <div class="sn-title">司南排名图</div>
- <div class="sn-body">
- <div class="wrap-container">
- <div class="pd-main">
- <div id="chart1" class="chart-1">
- <div class="compass">
- <div class="compass-bg-1"></div>
- <div class="compass-bg-2"></div>
- <div class="compass-bg-3"></div>
- <div class="compass-bg-4"></div>
- <div class="compass-bg-5"></div>
- <div class="compass-bg-6"></div>
- <div class="compass-bg-7"></div>
- <div class="compass-bg-c-1"></div>
- <div class="compass-bg-c-2"></div>
- <div class="compass-bg-c-3"></div>
- <div class="compass-bg-c-4"></div>
- <div class="compass-text" :class="[`compass-text-${index + 1}`, {show: number == index}]" v-for="(item, index) in arr" :key="index">
- <span>事项数:{{ item.itemNum }}</span>
- <span>数据项:{{ item.dataItem }}</span>
- <span>数据量:{{ item.dataSize }}</span>
- </div>
- <div class="compass-number">
- <div :title="`${index + 1}`" :class="[`rank-${index + 1}`, {szscale: number == index}]" v-for="(item, index) in arr" :key="index">
- <span>{{ item.workUnit }}</span>
- </div>
- </div>
- <div class="line-sx">
- <div class="line-fs"></div>
- <div class="line-fs"></div>
- <div class="line-fs"></div>
- <div class="line-fs"></div>
- <div class="line-fs"></div>
- <div class="line-fs"></div>
- <div class="line-fs"></div>
- <div class="line-fs"></div>
- <div class="line-fs"></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "sinan",
- data() {
- return {
- timer: null,
- number: null,
- arr: [{
- id: 1,
- itemNum: 258,
- dataItem: 1288,
- dataSize: 12306,
- workUnit: '税务局'
- },{
- id: 2,
- itemNum: 568,
- dataItem: 5623,
- dataSize: 12306,
- workUnit: '国土局'
- },{
- id: 3,
- itemNum: 208,
- dataItem: 1755,
- dataSize: 12043,
- workUnit: '农业局'
- },{
- id: 4,
- itemNum: 358,
- dataItem: 1812,
- dataSize: 12306,
- workUnit: '环保局'
- },{
- id: 5,
- itemNum: 128,
- dataItem: 4718,
- dataSize: 12580,
- workUnit: '公安局'
- }]
- }
- },
- mounted() {
- setTimeout(() => {
- this.number = 0;
- this.initData();
- }, 4000)
- },
- methods: {
- initData() {
- this.number = this.number == this.arr.length ? 0 : this.number;
- this.timer = setTimeout(() => {
- this.number++;
- this.initData();
- }, 5000)
- }
- },
- beforeDestroy() {
- clearTimeout(this.timer);
- }
- };
- </script>
- <style lang="scss" scoped>
- .sn-container {
- left: 50px;
- top: 110px;
- .pd-main {
- position: absolute;
- height: 100%;
- width: 100%;
- [class^=chart] {
- position: absolute;
- -webkit-transform-origin: left top;
- -moz-transform-origin: left top;
- -ms-transform-origin: left top;
- -o-transform-origin: left top;
- transform-origin: left top;
- }
- .chart-1 {
- width: 500px;
- height: 410px;
- top:55%;
- left:50%;
- -webkit-transform:translate(-50%,-50%);
- -moz-transform:translate(-50%,-50%);
- -ms-transform:translate(-50%,-50%);
- -o-transform:translate(-50%,-50%);
- transform:translate(-50%,-50%);
- }
- .compass {
- width: 100%;
- height: 100%;
- -webkit-transform: scale(0.9);
- -moz-transform: scale(0.9);
- -ms-transform: scale(0.9);
- -o-transform: scale(0.9);
- transform: scale(0.9);
- [class^=compass-bg-] {
- position: absolute;
- bottom: 0;
- }
- %compass-bg {
- position: absolute;
- bottom: 0px;
- left: 50%;
- -webkit-transform: rotateX(-80deg) rotateZ(45deg) rotateY(0deg);
- -moz-transform: rotateX(-80deg) rotateZ(45deg) rotateY(0deg);
- transform: rotateX(-80deg) rotateZ(45deg) rotateY(0deg);
- }
- .compass-bg-1 {
- @extend %compass-bg;
- margin-left: -250px;
- bottom: -200px;
- width: 500px;
- height: 500px;
- background: -webkit-repeating-radial-gradient(transparent, rgba(0, 138, 174, 0.2));
- background: -moz-repeating-radial-gradient(transparent, rgba(0, 138, 174, 0.2));
- background: -o-repeating-radial-gradient(transparent, rgba(0, 138, 174, 0.2));
- background: repeating-radial-gradient(transparent, rgba(0, 138, 174, 0.2));
- display: none;
- }
- .compass-bg-2 {
- @extend %compass-bg;
- margin-left: -220px;
- bottom: -170px;
- width: 440px;
- height: 440px;
- background: -webkit-repeating-radial-gradient(transparent, rgba(250, 118, 159, 0.2));
- background: -moz-repeating-radial-gradient(transparent, rgba(250, 118, 159, 0.2));
- background: -o-repeating-radial-gradient(transparent, rgba(250, 118, 159, 0.2));
- background: repeating-radial-gradient(transparent, rgba(250, 118, 159, 0.2));
- display: none;
- }
- .compass-bg-3 {
- @extend %compass-bg;
- margin-left: -190px;
- bottom: -140px;
- width: 380px;
- height: 380px;
- background: -webkit-repeating-radial-gradient(transparent, rgba(10, 58, 103, 0.2));
- background: -moz-repeating-radial-gradient(transparent, rgba(10, 58, 103, 0.2));
- background: -o-repeating-radial-gradient(transparent, rgba(10, 58, 103, 0.2));
- background: repeating-radial-gradient(transparent, rgba(10, 58, 103, 0.2));
- }
- .compass-bg-4 {
- @extend %compass-bg;
- margin-left: -160px;
- bottom: -110px;
- width: 320px;
- height: 320px;
- background: -webkit-repeating-radial-gradient(transparent, rgba(112, 67, 103, 0.2));
- background: -moz-repeating-radial-gradient(transparent, rgba(112, 67, 103, 0.2));
- background: -o-repeating-radial-gradient(transparent, rgba(112, 67, 103, 0.2));
- background: repeating-radial-gradient(transparent, rgba(112, 67, 103, 0.2));
- }
- .compass-bg-5 {
- @extend %compass-bg;
- margin-left: -130px;
- bottom: -80px;
- width: 260px;
- height: 260px;
- -webkit-box-shadow: inset 0 0 10px 10px rgba(44, 183, 190, 0.8);
- -moz-box-shadow: inset 0 0 10px 10px rgba(44, 183, 190, 0.8);
- box-shadow: inset 0 0 10px 10px rgba(44, 183, 190, 0.8);
- }
- .compass-bg-6 {
- @extend %compass-bg;
- margin-left: -100px;
- bottom: -50px;
- width: 200px;
- height: 200px;
- background: -webkit-repeating-radial-gradient(transparent, rgba(246, 116, 160, 0.2));
- background: -moz-repeating-radial-gradient(transparent, rgba(246, 116, 160, 0.2));
- background: -o-repeating-radial-gradient(transparent, rgba(246, 116, 160, 0.2));
- background: repeating-radial-gradient(transparent, rgba(246, 116, 160, 0.2));
- display: none;
- }
- .compass-bg-7 {
- @extend %compass-bg;
- margin-left: -70px;
- bottom: -20px;
- width: 140px;
- height: 140px;
- background: -webkit-repeating-radial-gradient(transparent, rgba(102, 97, 70, 0.2));
- background: -moz-repeating-radial-gradient(transparent, rgba(102, 97, 70, 0.2));
- background: -o-repeating-radial-gradient(transparent, rgba(102, 97, 70, 0.2));
- background: repeating-radial-gradient(transparent, rgba(102, 97, 70, 0.2));
- -webkit-animation: bgshadow 3s linear infinite;
- -moz-animation: bgshadow 3s linear infinite;
- -o-animation: bgshadow 3s linear infinite;
- animation: bgshadow 3s linear infinite;
- }
- .compass-bg-c-1 {
- width: 100%;
- height: 100%;
- background: url(../../assets/img/chart1/compass-bg-1.png) no-repeat 50% 345px;
- }
- .compass-bg-c-2 {
- width: 100%;
- height: 100%;
- background: url(../../assets/img/chart1/compass-bg-2.png) no-repeat 65% 146px;
- opacity: 0.8;
- -webkit-animation: fadebg 3s linear infinite;
- -moz-animation: fadebg 3s linear infinite;
- -o-animation: fadebg 3s linear infinite;
- animation: fadebg 3s linear infinite;
- }
- .compass-bg-c-3 {
- width: 100%;
- height: 100%;
- background: url(../../assets/img/chart1/compass-bg-3.png) no-repeat 50% 227px;
- }
- .compass-bg-c-4 {
- width: 100%;
- height: 100%;
- background: url(../../assets/img/chart1/compass-bg-4.png) no-repeat 50% 63px;
- -webkit-animation: numberfade 5s linear infinite;
- -moz-animation: numberfade 5s linear infinite;
- -o-animation: numberfade 5s linear infinite;
- animation: numberfade 5s linear infinite;
- }
- .compass-text {
- position: absolute;
- overflow: hidden;
- left: 50%;
- margin-left: -60px;
- font-size: 12px;
- background-color: rgba(0, 71, 157, 0.4);
- padding: 5px 10px;
- color: #00c2ff;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- line-height: 1.5;
- /*-webkit-transform: scale(0.8);
- -moz-transform: scale(0.8);
- -ms-transform: scale(0.8);
- -o-transform: scale(0.8);
- transform: scale(0.8);*/
- display: none;
- &.compass-text-1 {
- top: -77px;
- left: 48px;
- }
- &.compass-text-2 {
- top: -35px;
- left: 152px;
- }
- &.compass-text-3 {
- top: 5px;
- left: 250px;
- }
- &.compass-text-4 {
- top: 49px;
- left: 350px;
- }
- &.compass-text-5 {
- top: 88px;
- left: 450px;
- }
- &.compass-text-6 {
- color: #d57a31;
- bottom: -945px;
- -webkit-animation-delay: 25s;
- -moz-animation-delay: 25s;
- -o-animation-delay: 25s;
- animation-delay: 25s;
- }
- &.compass-text-7 {
- color: #d57a31;
- bottom: -1150px;
- -webkit-animation-delay: 30s;
- -moz-animation-delay: 30s;
- -o-animation-delay: 30s;
- animation-delay: 30s;
- }
- %span-nth-child {
- margin-top: 0px;
- }
- span {
- display: block;
- &:nth-child(1) {
- @extend %span-nth-child;
- }
- &:nth-child(2) {
- @extend %span-nth-child;
- }
- &:nth-child(3) {
- @extend %span-nth-child;
- }
- }
- &.show {
- display: block;
- }
- }
- .compass-number {
- position: absolute;
- width: 100%;
- height: 100%;
- overflow: hidden;
- bottom: 50px;
- > .szscale {
- -webkit-transform: scale(1.2);
- -moz-transform: scale(1.2);
- -ms-transform: scale(1.2);
- -o-transform: scale(1.2);
- transform: scale(1.2);
- -webkit-transform-origin: center bottom;
- -moz-transform-origin: center bottom;
- -ms-transform-origin: center bottom;
- -o-transform-origin: center bottom;
- transform-origin: center bottom;
- }
- > div {
- position: absolute;
- bottom: 0;
- width: 55px;
- height: 0;
- -webkit-animation: sz 1s linear;
- -moz-animation: sz 1s linear;
- -o-animation: sz 1s linear;
- animation: sz 1s linear;
- -webkit-animation-fill-mode: forwards;
- -moz-animation-fill-mode: forwards;
- -o-animation-fill-mode: forwards;
- animation-fill-mode: forwards;
- -webkit-transition: 1s;
- -o-transition: 1s;
- -moz-transition: 1s;
- transition: 1s;
- &:nth-child(1) {
- left: 5%;
- color: #ff9232;
- -webkit-animation-delay: 0s;
- -moz-animation-delay: 0s;
- -o-animation-delay: 0s;
- animation-delay: 0s;
- &:after {
- -webkit-animation-delay: 0s;
- -moz-animation-delay: 0s;
- -o-animation-delay: 0s;
- animation-delay: 0s;
- }
- }
- &:nth-child(2) {
- left: 25%;
- color: #d5c245;
- -webkit-animation-delay: 0.2s;
- -moz-animation-delay: 0.2s;
- -o-animation-delay: 0.2s;
- animation-delay: 0.2s;
- bottom: -10%;
- &:after {
- -webkit-animation-delay: 2.85s;
- -moz-animation-delay: 2.85s;
- -o-animation-delay: 2.85s;
- animation-delay: 2.85s;
- }
- }
- &:nth-child(3) {
- left: 45%;
- color: #01a455;
- -webkit-animation-delay: 0.4s;
- -moz-animation-delay: 0.4s;
- -o-animation-delay: 0.4s;
- animation-delay: 0.4s;
- bottom: -20%;
- &:after {
- -webkit-animation-delay: 5.7s;
- -moz-animation-delay: 5.7s;
- -o-animation-delay: 5.7s;
- animation-delay: 5.7s;
- }
- }
- &:nth-child(4) {
- left: 65%;
- color: #85adfb;
- -webkit-animation-delay: 0.6s;
- -moz-animation-delay: 0.6s;
- -o-animation-delay: 0.6s;
- animation-delay: 0.6s;
- bottom: -30%;
- &:after {
- -webkit-animation-delay: 8.55s;
- -moz-animation-delay: 8.55s;
- -o-animation-delay: 8.55s;
- animation-delay: 8.55s;
- }
- }
- &:nth-child(5) {
- left: 85%;
- color: #c36885;
- -webkit-animation-delay: 0.8s;
- -moz-animation-delay: 0.8s;
- -o-animation-delay: 0.8s;
- animation-delay: 0.8s;
- bottom: -40%;
- &:after {
- -webkit-animation-delay: 11.4s;
- -moz-animation-delay: 11.4s;
- -o-animation-delay: 11.4s;
- animation-delay: 11.4s;
- }
- }
- &:nth-child(6) {
- left: 75%;
- color: #f674a0;
- -webkit-animation-delay: 1s;
- -moz-animation-delay: 1s;
- -o-animation-delay: 1s;
- animation-delay: 1s;
- bottom: -50%;
- &:after {
- -webkit-animation-delay: 14.25s;
- -moz-animation-delay: 14.25s;
- -o-animation-delay: 14.25s;
- animation-delay: 14.25s;
- }
- }
- &:nth-child(7) {
- left: 87.5%;
- color: #275fcc;
- -webkit-animation-delay: 1.2s;
- -moz-animation-delay: 1.2s;
- -o-animation-delay: 1.2s;
- animation-delay: 1.2s;
- bottom: -60%;
- &:after {
- -webkit-animation-delay: 17.1s;
- -moz-animation-delay: 17.1s;
- -o-animation-delay: 17.1s;
- animation-delay: 17.1s;
- }
- }
- span {
- display: block;
- width: 55px;
- height: 55px;
- line-height: 55px;
- text-align: center;
- /*padding-bottom: 55px;*/
- -webkit-box-shadow: inset 0 0 15px currentColor;
- -moz-box-shadow: inset 0 0 15px currentColor;
- box-shadow: inset 0 0 15px currentColor;
- -webkit-border-radius: 100%;
- -moz-border-radius: 100%;
- border-radius: 100%;
- }
- &:before {
- content: "";
- position: absolute;
- height: 100%;
- border-left: 1px dashed currentColor;
- height: 500px;
- top: 55px;
- left: 50%;
- margin-left: -1px;
- }
- &:after {
- content: "NO." attr(title);
- position: absolute;
- display: inline-block;
- top: -20px;
- width: 100%;
- font-family: "DIGITALDREAMFAT";
- text-align: center;
- }
- }
- }
- .line-sx {
- > div {
- &:nth-child(2) {
- height: 90%;
- -webkit-animation-duration: 2s;
- -moz-animation-duration: 2s;
- -o-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-delay: 1.5s;
- -moz-animation-delay: 1.5s;
- -o-animation-delay: 1.5s;
- animation-delay: 1.5s;
- bottom: 0;
- left: 51px;
- }
- &:nth-child(3) {
- height: 100%;
- -webkit-animation-duration: 3s;
- -moz-animation-duration: 3s;
- -o-animation-duration: 3s;
- animation-duration: 3s;
- -webkit-animation-delay: 0s;
- -moz-animation-delay: 0s;
- -o-animation-delay: 0s;
- animation-delay: 0s;
- bottom: 32px;
- left: 89px;
- }
- &:nth-child(4) {
- height: 100%;
- -webkit-animation-duration: 2.5s;
- -moz-animation-duration: 2.5s;
- -o-animation-duration: 2.5s;
- animation-duration: 2.5s;
- -webkit-animation-delay: 1s;
- -moz-animation-delay: 1s;
- -o-animation-delay: 1s;
- animation-delay: 1s;
- bottom: 3px;
- left: 179px;
- -webkit-filter: hue-rotate(180deg);
- filter: hue-rotate(180deg);
- }
- &:nth-child(5) {
- height: 90%;
- -webkit-animation-duration: 2s;
- -moz-animation-duration: 2s;
- -o-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-delay: 2s;
- -moz-animation-delay: 2s;
- -o-animation-delay: 2s;
- animation-delay: 2s;
- bottom: 42px;
- left: 229px;
- }
- &:nth-child(6) {
- height: 100%;
- -webkit-animation-duration: 2.5s;
- -moz-animation-duration: 2.5s;
- -o-animation-duration: 2.5s;
- animation-duration: 2.5s;
- -webkit-animation-delay: 0.5s;
- -moz-animation-delay: 0.5s;
- -o-animation-delay: 0.5s;
- animation-delay: 0.5s;
- bottom: 11px;
- right: 48px;
- }
- &:nth-child(7) {
- height: 90%;
- -webkit-animation-duration: 3s;
- -moz-animation-duration: 3s;
- -o-animation-duration: 3s;
- animation-duration: 3s;
- -webkit-animation-delay: 2.5s;
- -moz-animation-delay: 2.5s;
- -o-animation-delay: 2.5s;
- animation-delay: 2.5s;
- bottom: -22px;
- right: 174px;
- -webkit-filter: hue-rotate(180deg);
- filter: hue-rotate(180deg);
- }
- &:nth-child(8) {
- height: 90%;
- -webkit-animation-duration: 3s;
- -moz-animation-duration: 3s;
- -o-animation-duration: 3s;
- animation-duration: 3s;
- -webkit-animation-delay: 1.5s;
- -moz-animation-delay: 1.5s;
- -o-animation-delay: 1.5s;
- animation-delay: 1.5s;
- bottom: -22px;
- right: 100px;
- }
- &:nth-child(9) {
- height: 100%;
- -webkit-animation-duration: 2.5s;
- -moz-animation-duration: 2.5s;
- -o-animation-duration: 2.5s;
- animation-duration: 2.5s;
- -webkit-animation-delay: 2s;
- -moz-animation-delay: 2s;
- -o-animation-delay: 2s;
- animation-delay: 2s;
- bottom: -10px;
- right: 220px;
- }
- &:nth-child(10) {
- height: 95%;
- -webkit-animation-duration: 2s;
- -moz-animation-duration: 2s;
- -o-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-delay: 1s;
- -moz-animation-delay: 1s;
- -o-animation-delay: 1s;
- animation-delay: 1s;
- bottom: -41px;
- right: 182px;
- }
- }
- .line-fs {
- width: 14px;
- height: 100%;
- background: url(../../assets/img/chart1/line-fs.png) no-repeat;
- background-position: 50% 150%;
- position: absolute;
- z-index: -1;
- -webkit-animation: fs 3s cubic-bezier(1, 0, 0.6, 0.6) infinite;
- -moz-animation: fs 3s cubic-bezier(1, 0, 0.6, 0.6) infinite;
- -o-animation: fs 3s cubic-bezier(1, 0, 0.6, 0.6) infinite;
- animation: fs 3s cubic-bezier(1, 0, 0.6, 0.6) infinite;
- }
- }
- }
- }
- }
- @-webkit-keyframes fs {
- 0% {
- background-position: 50% 150%;
- }
- 50% {
- background-position: 50% -132%;
- }
- 100% {
- background-position: 50% -264%;
- opacity: 0;
- }
- }
- @-moz-keyframes fs {
- 0% {
- background-position: 50% 150%;
- }
- 50% {
- background-position: 50% -132%;
- }
- 100% {
- background-position: 50% -264%;
- opacity: 0;
- }
- }
- @-o-keyframes fs {
- 0% {
- background-position: 50% 150%;
- }
- 50% {
- background-position: 50% -132%;
- }
- 100% {
- background-position: 50% -264%;
- opacity: 0;
- }
- }
- @keyframes fs {
- 0% {
- background-position: 50% 150%;
- }
- 50% {
- background-position: 50% -132%;
- }
- 100% {
- background-position: 50% -264%;
- opacity: 0;
- }
- }
- @-webkit-keyframes bgshadow {
- 0%,100% {
- -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
- box-shadow: 0 0 0 rgba(255, 255, 255, 0);
- }
- 50% {
- -webkit-box-shadow: 0 0 30em white;
- box-shadow: 0 0 30em white;
- }
- }
- @-moz-keyframes bgshadow {
- 0%,100% {
- -moz-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
- box-shadow: 0 0 0 rgba(255, 255, 255, 0);
- }
- 50% {
- -moz-box-shadow: 0 0 30em white;
- box-shadow: 0 0 30em white;
- }
- }
- @-o-keyframes bgshadow {
- 0%,100% {
- box-shadow: 0 0 0 rgba(255, 255, 255, 0);
- }
- 50% {
- box-shadow: 0 0 30em white;
- }
- }
- @keyframes bgshadow {
- 0%,100% {
- -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
- -moz-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
- box-shadow: 0 0 0 rgba(255, 255, 255, 0);
- }
- 50% {
- -webkit-box-shadow: 0 0 30em white;
- -moz-box-shadow: 0 0 30em white;
- box-shadow: 0 0 30em white;
- }
- }
- @-webkit-keyframes sz {
- 0% {
- height: 0;
- }
- 100% {
- height: 70%;
- }
- }
- @-moz-keyframes sz {
- 0% {
- height: 0;
- }
- 100% {
- height: 70%;
- }
- }
- @-o-keyframes sz {
- 0% {
- height: 0;
- }
- 100% {
- height: 70%;
- }
- }
- @keyframes sz {
- 0% {
- height: 0;
- }
- 100% {
- height: 70%;
- }
- }
- </style>
|