Я хотел изменить свой фон, используя рубин, но фон белый
body {
background: url(<%= asset_path'#{@imagefond}'%>) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
в моем fils.rb
, я положил,
def background_acceuil
i=0
t=['fond.jpg','fond1.jpg']
while i<t.length
@imagefond=t[i]
sleep 3
i=i+1
if i==t.length
i=0
end
end