全体の背景繰り返し
■ 全体の背景繰り返し
★ 全体に背景をつけます。(繰り返し)
★ 全体背景の固定は下記です。
http://ameblo.jp/new-bulue9/entry-10458514594.html#Top
◆ 実例画像は下記を使用しています。
◆ 背景固定。 CSSへ下記CSSを追記します。
/* ----------------------------------------------------- */
/* ■ 全体の背景画像(繰り返し) */
/* ----------------------------------------------------- */
body{
background-image:url(背景画像のURL);
background-repeat:repeat;
background-attachment:fixed;
}
/* ■ 全体の背景画像(繰り返し) */
/* ----------------------------------------------------- */
body{
background-image:url(背景画像のURL);
background-repeat:repeat;
background-attachment:fixed;
}
● 実例① (下記をクリック)
ここをクリック
● 実例② (下記をクリック)
ここをクリック
◆ 背景スクロール。 CSSへ下記CSSを追記します。
/* ----------------------------------------------------- */
/* ■ 全体の背景画像(繰り返し) */
/* ----------------------------------------------------- */
body{
background-image:url(背景画像のURL);
background-repeat:repeat;
background-attachment:scroll;
}
/* ■ 全体の背景画像(繰り返し) */
/* ----------------------------------------------------- */
body{
background-image:url(背景画像のURL);
background-repeat:repeat;
background-attachment:scroll;
}
● 実例① (下記をクリック)
ここをクリック
● 実例② (下記をクリック)
ここをクリック