How do you make the iCloud dynamic background effect?

Asked

Viewed 132 times

1

How can I do the effect of the login with the background as the iCloud when changing the size of the browser?

If you repair the overshadowed objects change their position depending on the size of the browser. In the first image are 2 rows of objects by 7 columns, in the second image are 3 rows by 5 columns.

You can do that with bootstrap?

inserir a descrição da imagem aqui

inserir a descrição da imagem aqui

1 answer

1


Browsing the web I found a possible solution to the appearance of Blur, if necessary, what you can understand is everything done by CSS, only a JS to trigger the effect when necessary, there is not much secret.

.blur {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

Follow link with effect instructions: http://jsfiddle.net/Josh_Powell/6G6jR/1/

In question of the relocation of objects, the objects are replaced alone, a similar effect is the grid-system/bootstrap thumbnails.

  • 1

    Rodrigo changed his answer so that it is not based only on links, if you do not like can always reverse. But that’s exactly what I was able to do with your idea. Thank you.

  • Rodrigo does not work on internet explore. Any idea?

  • Which IE version is being used?

  • I’m testing at 8,9,10 and 11.

  • The Blur effect works only with CSS3, i.e., from IE 11.

  • Yeah, I don’t know how to fix the problem... so far it’s dead, but I should find another way.

  • Sorry I was wrong, but I was wrong about the past information... actually it works from Edge, IE has filter support, but not filter: Blur. To solve would have to develop a JS, but unfortunately I do not guarantee the answer because it is not exactly my area, sorry.

  • Thank you in the same friend ;)

Show 3 more comments

Browser other questions tagged

You are not signed in. Login or sign up in order to post.