2017-04-02 10 views
0

http://lucasdebelder.be/googledoodle/ ここはライブバージョンです。ボックスシャドウのオン/オフの切り替え?

ポータルで見ると、周囲には光があります。box-shadow;私はそれをオンとオフにしたいので、ちょっと実感します。私はtransition: box-shadow ease-in-out;を追加しましたが、それは開始時にのみ行います、ページがロードされた後、ちょうど光っている。

はここに関連するコードです。 (portaal_linksポータル左、およびrechtsは右の意味、それはオランダ人だ意味)

HTML:

<div class="portaal portaal_links"></div> 
<div class="portaal portaal_rechts"></div> 

CSS:

/*portaal general*/ 
.portaal { 
    position: absolute; 
    width: 100px; 
    height: 200px; 
    border-radius: 50px/100px; 
    bottom: 315px; 
} 



/*portaal left*/ 
.portaal_links { 
    background: radial-gradient(ellipse at center, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
    transition: box-shadow ease-in-out; 
    transition-delay: 1s; 
    transition-duration: 1s; 
    box-shadow: 0 0 55px #57B6FF; 
    opacity: 0.75; 
    left: 50px; 
} 


.portaal_rechts { 
    background: radial-gradient(ellipse at center, rgba(243,197,189,1) 0%,rgba(232,108,87,1) 50%,rgba(234,40,3,1) 51%,rgba(255,102,0,1) 75%,rgba(199,34,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
    box-shadow: 0 0 55px #FF6600; 
    opacity: 0.55; 
    left: 750px; 
} 
+0

アニメーションの代わりの移行を使用してください。 –

答えて

1

使用したアニメーションの代わりに推移。

キーフレーム:https://www.w3schools.com/cssref/css3_pr_animation-keyframes.asp

アニメーション:あなたは以下box-shadowのようanimationを作成することができhttps://www.w3schools.com/css/css3_animations.asp

.test { 
 
    background: red; 
 
    border-radius: 50%; 
 
    width: 100px; 
 
    height: 200px; 
 
    animation: testing 3s linear infinite; } 
 

 
@keyframes testing { 
 
    25% { 
 
    box-shadow: 0 0 55px rgba(0,0,0,0.9); } 
 
    75% { 
 
    box-shadow: 0 0 0 transparent; } 
 
}
<div class="test"></div>

+0

ええ、私はちょうどそれを考え出して固定しました。しかし、とにかくおかげで:) – Panic

1

/*portaal general*/ 
 
.portaal { 
 
    position: absolute; 
 
    width: 100px; 
 
    height: 200px; 
 
    border-radius: 50px/100px; 
 
    bottom: 60px; 
 
} 
 

 

 

 
/*portaal left*/ 
 
.portaal_links { 
 
    background: radial-gradient(ellipse at center, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
 
    transition: box-shadow ease-in-out; 
 
    transition-delay: 1s; 
 
    transition-duration: 1s; 
 
    box-shadow: 0 0 55px #57B6FF; 
 
    opacity: 0.75; 
 
    left: 50px; 
 
    animation:mvv 2s infinite; 
 
} 
 
@keyframes mvv{ 
 
    0%{ 
 
     box-shadow: 0 0 55px #57B6FF; 
 
    } 
 
    50%{ 
 
     box-shadow: 0 0 0px #57B6FF; 
 
    } 
 
} 
 

 
.portaal_rechts { 
 
    background: radial-gradient(ellipse at center, rgba(243,197,189,1) 0%,rgba(232,108,87,1) 50%,rgba(234,40,3,1) 51%,rgba(255,102,0,1) 75%,rgba(199,34,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
 
    box-shadow: 0 0 55px #FF6600; 
 
    opacity: 0.55; 
 
    left: 750px; 
 
    animation:mv 2s infinite; 
 
} 
 
@keyframes mv{ 
 
    0%{ 
 
     box-shadow: 0 0 55px #FF6600; 
 
    } 
 
    50%{ 
 
     box-shadow: 0 0 0px #FF6600; 
 
    } 
 
}
<div class="portaal portaal_links"></div> 
 
<div class="portaal portaal_rechts"></div>