gpt4 book ai didi

javascript - CSS移动背景图片

转载 作者:行者123 更新时间:2023-11-30 13:29:32 26 4
gpt4 key购买 nike

我有一个平铺的背景图像,看起来像一个网格。 Tiled background image

问题:

我只是想知道是否可以使用 CSS 移动平铺图像以产生平移图像的效果。然而,图像仍然需要跨越屏幕的整个宽度和高度。

平铺图像:

Tile image

当前 CSS:

#background
{
position: fixed;
width: 100%;
height: 100%;
background-color: #7abcff; /* Old browsers */
background-image: url('../images/background.jpg');
}

当您按下向上/向下箭头或使用右上角的平移工具时,我调整了 CSS 渐变值。

解决方案:使用 jQuery 和 CSS background-position:

$('#background').attr("style", "background-position: " + this._bgL + 'px ' + this._bgT + 'px'); 

最佳答案

您可以使用 background-position: <offset-x> <offset-y> [docs]移动背景图像。

在这里试试:http://jsfiddle.net/4Cwj5/ (尝试更改 background-position 属性并单击“运行”)

关于javascript - CSS移动背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7299482/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com