网页背景图固定不动,不跟随滚动条滚动

news/2024/11/23 17:17:22/

我们在做网页的时候,当背景是一张完整的图片,不动让其跟随滚动条滚动,怎么办?下面详细讲解一下。

CSS代码示例-背景颜色属性(background-color):

<html>
<head>
<title>背景颜色 background-color</title>
<style type="text/css"> body {background-color:#99FF00;} </style> </head>
<body> 
<p>这个HTML使用了CSS的background-color属性,将HTML的背景颜色变成翠绿色。<p> 
</body> 
</html>

演示结果: 这个HTML使用了CSS的background-color属性,将HTML的背景颜色变成翠绿色。


CSS代码示例-背景图片属性(background-image):

<html><head>
<title>背景图片background-image</title></head>
<body style="background-image:url(../images/css_tutorials/background.jpg)"> <p>这个HTML使用了CSS的background-image属性,设置了背景图片。<p>
</body></html>

演示结果: 这个HTML使用了CSS的background-image属性,设置了背景图片。


CSS代码示例- 背景重复属性(background-repeat)

<html><head>
<title>背景重复 background-repeat</title>
<
style type="text/css"> body {background-image:url(../images/css_tutorials/background.jpg); background-repeat:repeat-y} </style> </head> <body> <p>这个HTML使用了CSS的background-repeat属性,使背景图片竖向重复。<p>
<p>常用的background-repeat的属性值有: repeat-x(横向重复),repeat-x(横向重复), no-repeat(不重复)。</p>
<p>background-repeat属性要和background-image一起用。</p> </body> </html>

演示结果: 这个HTML使用了CSS的background-repeat属性,使背景图片竖向重复。 常用的background-repeat的属性值有: repeat-x(横向重复),repeat-x(横向重复), no-repeat(不重复)。 background-repeat属性要和background-image一起用。

 

CSS代码示例-背景附着属性(background-attachment)-[背景图固定不动,不跟随滚动条滚动]:

<html><head>
<title>背景附着属性 background-attachment</title>
<style type="text/css">
body {background-image:url(../images/css_tutorials/background.jpg); background-repeat:no-repeat; background-attachment:fixed} </style> 
</head>
<body> 
<p>这个HTML使用了CSS的background-attachment属性,将背景图片固定,不随内容滚动而滚动。<p>
<p>背景附着(background-attachment)属性有两个值。一个是scroll,表示随内容滚动而动;一个是fixed,表示固定不动,不受内容滚动影响。缺省值是scroll。</p>
<p>background-attachment要和background-image一起用。</p> </body></html>

演示结果: 这个HTML使用了CSS的 background-attachment 属性,将背景图片固定,不随内容滚动而滚动

背景附着(background-attachment)属性有两个值。一个是scroll,表示随内容滚动而动;一个是fixed,表示固定不动,不受内容滚动影响。缺省值是scroll。

background-attachment要和background-image一起用。

这个HTML使用了CSS的background-attachment属性,将背景图片固定,不随内容滚动而滚动。

背景附着(background-attachment)属性有两个值。一个是scroll,表示随内容滚动而动;一个是fixed,表示固定不动,不受内容滚动影响。缺省值是scroll。

 

CSS代码示例-背景位置属性(background-position):

<html><head>
<title>背景位置属性 background-position</title>
<
style type="text/css">
body {background-image:url(../images/css_tutorials/background.jpg);background-repeat:no-repeat;background-position:20px 60px}</style>
</head>
<body>
<p>这个HTML使用了CSS的background-position属性。这个属性和background-image属性连在一起使用,决定了背景图片的最初位置。</p>
<p>上面的代码表示背景图片的初始位置距离网页最左面20px,距离网页最上面60px。</p>
</body></html>

演示结果: 这个HTML使用了CSS的background-position属性。这个属性和background-image属性连在一起使用,决定了背景图片的最初位置。

上面的代码表示背景图片的初始位置距离网页最左面20px,距离网页最上面60px。

 

CSS代码示例-背景属性(background):

<html><head>
<
title>背景属性 background</title>
<style type="text/css">body{background:#99FF00 url(../images/css_tutorials/background.jpg) no-repeat fixed 40px 100px} </style>
</head> <body><p>这个属性是设置背景相关属性的一种快捷的综合写法,包括background-color, background-image, background-repeat, backgroundattachment, background-position。</p>
<p>这个HTML所用的背景属性表示,网页的背景颜色是翠绿色,背景是background.jpg图片,图片不重复显示,背景图片不随内容滚动而动,背景图片距离网页最左面40px,距离网页最上面100px。</p> </body></html>

演示结果: 这个属性是设置背景相关属性的一种快捷的综合写法, 包括background-color, background-image, background-repeat, backgroundattachment, background-position。

这个HTML所用的背景属性表示,网页的背景颜色是翠绿色,背景图片是background.jpg图片,背景图片不重复显示,背景图片不随内容滚动而动,背景图片距离网页最左面40px,距离网页最上面100px。

这个属性是设置背景相关属性的一种快捷的综合写法, 包括background-color, background-image, background-repeat, backgroundattachment, background-position。


http://www.ppmy.cn/news/297625.html

相关文章

背景图片不跟随滚动条滚动

我们在做网页的时候&#xff0c;当背景是一张完整的图片&#xff0c;不动让其跟随滚动条滚动&#xff0c;怎么办&#xff1f;下面详细讲解一下。 CSS代码示例-背景颜色属性(background-color): <html> <head> <title>背景颜色 background-color</title>…

3.Css——背景

Css背景 CSS允许应用纯色作为背景&#xff0c;也允许使用背景图像创建相当复杂的效果 background-size 规定背景图片的尺寸 background-origin 规定背景图片的定位区域 background-clip 规定背景图片的绘制区域 -----------------------------------------------------------…

关于背景、表格、渐变

背景&#xff1a; 背景色&#xff1a;opacity:0.2 透明的&#xff1a;子元素会跟着父元素还有文本一起透明 背景图&#xff1a;background-image: url(地址); 重复&#xff1a;background-repeat:repeat ;&#xff08;默认情况&#xff09; 不重复&#xff1a; background-…

【转】html背景设置

背景颜色属性(background-color)这个属性为HTML元素设定背景颜色&#xff0c;相当于HTML中bgcolor属性。body {background-color:#99FF00;}上面的代码表示Body这个HTML元素的背景颜色是翠绿色的。演示示例背景图片属性(background-image)这个属性为HTML元素设定背景图片&#x…

✠OpenGL-9-天空和背景

目录 天空盒天空穹顶实现天空盒从头开始构建天空盒使用OpenGL立方体贴图分析矩阵中值的存储 & mat4转mat3原理 环境贴图关于reflect函数 补充说明 天空盒或 天空穹顶提供了有效且相对简单的方法&#xff0c;用来生成令人信服的地平线景观。 天空盒 如何为地平线制作纹理&…

3-CSS3浮动定位与背景样式

一、浮动与定位 1、浮动的基本概念 浮动的最本质功能:用来实现并排。 浮动的使用&#xff1a; 浮动使用要点:要浮动&#xff0c;并排的盒子都要设置浮动。 父盒子要有足够的宽度&#xff0c;否则子盒子会掉下去。 浮动的顺序贴靠特性&#xff1a;&#xff08;贴靠前一个&am…

6.背景属性

background-color 背景颜色background-image 背景图片 background-image&#xff1a;url("1.png"); 背景平铺background-repeat: repeat默认平铺 |no-repeat不平铺 |repeat-x水平方向平铺&#xff0c;垂直不平铺 |repeat-y 垂直方向平铺background-position left …

html背景图片刚刚好铺满,ppt的背景图片怎么设置才能铺满整张又不失真呢? | ppt整套背景图...

PPT如何设置统一的背景图片 背景——填充效果——切换到“图片”选项卡——单击“选择图片”——找到你需要插入的图片 后确定——全部应用即可 PPT模板的背景图片标准是什么尺寸&#xff1f; 默认状态下新建PPT文档&#xff0c; PPT背认的宽高分别25.4厘米和19.05厘米。 ppt背…