Guest User

Untitled

a guest
Apr 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. # Preload images by creating a hidden div
  2. #
  3. # .preload {
  4. # position: absolute;
  5. # left: 1000px;
  6. # top: 1000px;
  7. # }
  8. def preload_images(*images)
  9. output = ""
  10. images.each do |image_path|
  11. output << "<div class=\"preload\" style=\"background: url(/images/#{image_path})\"></div>"
  12. end
  13. output
  14. end
Add Comment
Please, Sign In to add comment