Rails Heroku加载背景图片的一部分

时间:2016-05-25 21:39:38

标签: ruby-on-rails image heroku background assets

我在Heroku上有一个rails应用程序。在这个应用程序中,我有背景图像,我称之为;

<div class="fill" style="background-image:url('<%= asset_path ('4.jpg') %>');">

背景图片工作但突然间,它开始显示其中的一部分。

enter image description here

enter image description here

为什么会这样?意识到主页旋转木马滑块bakground图像也会发生。但是当我检查背景链接时,它会显示完整的图片,但图片没有加载到滑块上。

1 个答案:

答案 0 :(得分:0)

尝试使用image_tag。以下是位于app / assets / images

中的图片的示例
<div class="fill">
    <%= image_tag("4")%>
</div>