画像をぼかす方法(超簡単)
簡単!背景画像をぼかす方法
CSSに一言だけ付け足せばOK!
index.html.erb
<%= image_tag "star.webp", class:"bgimage" %>
上記のclass名はお好みで!次はCSS!!
○○.css
.bgimage{
filter: blur(5px);
width: 100%;
}
上記の通りfilter: blur(5px);を追加すればOK!
5pxとなっていますが、1にするにも10にするにもぼかしの濃さを調整できますのでお好みで!
widthは100%にしておくと画面幅がぴったりになると思うのでこちらも忘れずに!
現場からは以上です!
index.html.erb
<%= image_tag "star.webp", class:"bgimage" %>
○○.css
.bgimage{
filter: blur(5px);
width: 100%;
}
Author And Source
この問題について(画像をぼかす方法(超簡単)), 我々は、より多くの情報をここで見つけました https://qiita.com/sagawashu/items/3f87527136257b9f638e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .