Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーが Web ページをスクロールしている間、画像が動かないようにすることは可能ですか? ユーザーが常に画像を見るように?を使用すると可能だと思いますが、方法がわかりません。
css 属性を使用して、絶対属性position: fixed;を指定topします。left
position: fixed;
top
left
body { background-image: url("http://yoursite.com/path/to/image.gif"); background-position: 50% 50%; background-repeat: no-repeat; }