I have the following effect:
.fundo
{
-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-ms-filter: blur(1px);
-o-filter: blur(1px);
filter: blur(1px);
width:500px;
height: 300px;
border: 1px solid #ddd;
background: #fff url("https://lh3.googleusercontent.com/-RTxvEA_h-QE/VL0rqFeJUOI/AAAAAAAAAFA/FnwV5m9cSM0/w1920-h1200/BingWallpaper-2015-01-18.jpg") 50% 50%;
animation: anima-fundo 20s ease 1s infinite alternate;
-webkit-animation: anima-fundo 20s ease 1s infinite alternate;
-moz-animation: anima-fundo 20s ease 1s infinite alternate;
transition: 8s all;
-webkit-transition: 8s all;
-moz-transition: 8s all; }
@keyframes anima-fundo {
0% { background-position: 50% 50% }
25% { background-position: 55% 55% }
50% { background-position: 60% 45% }
75% { background-position: 40% 30% }
100% { background-position: 60% 40% }
}
@-webkit-keyframes anima-fundo {
0% { background-position: 50% 50% }
25% { background-position: 55% 55% }
50% { background-position: 60% 45% }
75% { background-position: 40% 30% }
100% { background-position: 60% 40% }
}
@-moz-keyframes anima-fundo {
0% { background-position: 50% 50% }
25% { background-position: 55% 55% }
50% { background-position: 60% 45% }
75% { background-position: 40% 30% }
100% { background-position: 60% 40% }
}
<div class="fundo"></div>
I wanted to know how to leave it more smooth and random, if you observe, it is always going on an equal diagonal, in the softness, notice that it is half 'square' when change of direction is very dry and breaks the legal effect.
So how do you make it softer and random? I already 'fuçei' in everything there but I could not make progress.