arrow_upward
closeサイドバー無

背景固定

background-attachment:値;
fixed スクロールと一緒に動く。

背景一部固定

body{
    background-image:url(背景画像のURL);
    background-attachment:fixed;
    background-repeat:no-repeat;
    background-position:☆% ☆%;
    background-color:背景の色;}

を入れて下さい。☆は0~100%等で設定し、左上からで好きなところに指定できます。
0% 0%だと左上。50% 50%だと真ん中。100% 100%だと右下って感じになります。
その他、bottom、top、left、rightの指定方法などあります。


背景一列固定

body{
    background-color:背景の色;
    background-image:url(背景画像のURL);
    background-attachment:fixed;
    background-repeat:repeat-☆;
    background-position:◇;}

☆にxyを。xが横、yが縦です。


背景全面固定

body{
 background-color:背景の色;
 background:url(背景画像のURL);
 background-attachment:fixed;}

 

関連記事

0 件のコメント:

コメントを投稿