Search
 
SCRIPT & CODE EXAMPLE
 

CSS

box shadow css animation

.box-shadow {
  box-shadow: 0 3px 5px 0 rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease-in-out;
}
Comment

css animation box shadow

<div class="box">Box</div>
<style>
.box {
    width: 300px;
    padding: 40px 0;
    font: bold 46px sans-serif;
	text-align: center;
    background: #ccc;
    border: 1px solid #999;
    -webkit-animation: test 4s infinite; /* Chrome, Safari, Opera */
    animation: test 4s infinite;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes test {
    50% {box-shadow: 8px 8px 16px #999;}
}
/* Standard syntax */
@keyframes test {
    50% {box-shadow: 8px 8px 16px #999;}
}
</style>
Comment

PREVIOUS NEXT
Code Example
Css :: css circle border 
Css :: css safari conditional 
Css :: bg color css 
Css :: text color as gradient css 
Css :: how to apply outline to text in html css 
Css :: JS make text not highlightable 
Css :: width 100% with padding 
Css :: media query tablet only 
Css :: universal css 
Css :: css for internet explorer only 
Css :: make triangle using div 
Css :: how to scroll fixed position 
Css :: add background image and color css 
Css :: mat-progress-bar style without app-theme 
Css :: background color inline styling 
Css :: clearfix css 
Css :: install tailwind with cdn 
Css :: how to right align a block element in css 
Css :: how to make image not repeat on background 
Css :: posicionar div centro da tela 
Css :: css option value 
Css :: how to show ... after some long chars js html h1 
Css :: gulp with pm2 
Css :: how to write remark in css 
Css :: putting label on top of input css 
Css :: dotted underline css 
Css :: label width css 
Css :: css flip text 
Css :: underline css animation hover 
Css :: estilos de scroll css 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =