これは「.rb」ファイルです。
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
def bg
@images = ["bg1.jpg", "bg2.jpg", "bg3.jpg", "bg4.jpg", "bg5.jpg","bg6.jpg","bg7.jpg","bg8.jpg"]
@random_no = rand(8)
@random_image = @images[@random_no]
end
end
これは「css.scss」ファイルです。
#welcome
{
background-image:url();
}
background-image
を表示したいのですが、@random_image
何を入れるべきかわかりませんurl()
。
ありがとう!