使用红宝石更改背景图像

时间:2019-01-25 11:53:43

标签: ruby-on-rails ruby-on-rails-4

我想使用红宝石更改背景,但是背景是白色的

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

0 个答案:

没有答案