㈠ jsp如何使背景图片自动调整符合显示器大小
JS来实现。
你搜一下 JS 里的 document.all('图片的ID').style.height和document.all('图片的ID').style.width 方法
如
<img height="高版" width="宽" id="ID" src="图片地址权">
那么 document.all('ID').style.height="200";
㈡ jsp页面怎样不平铺,就是拉伸一下,一张图片显示在整个页面上 不重复出现
这个只和背景图片的css设置有关。background-repeat:
repeat
默认。背景图像将在垂直方向和水平方向重复。
repeat-x
背景图像将在水平方向重复。
repeat-y
背景图像将在垂直方向重复。
no-repeat
背景图像将仅显示一次。
一般都是水平重复或者垂直重复,因为要兼容不同的窗口大小。
㈢ 如何给jsp页面添加背景图片
1、首先新建Dynamic web project项目,建好之后在WebContent里面的内容如图所示。
㈣ jsp怎样设计背景图全屏
语法: background-repeat : repeat | no-repeat | repeat-x | repeat-y
参数:
repeat : 背景图像在纵向和横向上平铺
no-repeat : 背景图像不平铺
repeat-x : 背景图像在横向上平铺
repeat-y : 背景图像在纵向平铺
㈤ jsp中js实现点击按钮更改背景图片
啥也不多说,直接上代码,这里改变的是div背景颜色,你修改一下啊就OK
<style type="text/css" media="all">
#aa{ height:300px; width:300px; margin:o auto;}
#a1{ height:250px; width:300px; border:1px solid #0099CC; color:#000000; font-size:18px;}
#a2{ height:50px; width:300px; }
</style>
<script type="text/javascript">
function bb(o){
var dom = document.getElementById("a1");
if(parseInt(o)==1){
dom.style.cssText = "background-color:#009900;";
}else if(parseInt(o)==2){
dom.style.cssText = "background-color:#FFFF00;";
}else{
dom.style.cssText = "background-color:#FF0000;";
}
}
</script>
</head>
<body>
<div id="aa">
<div id="a1">div中的字体哦</div>
<div id="a2">
<input type="button" value="点击1" onclick="bb(1)" />
<input type="button" value="点击2" onclick="bb(2)" />
<input type="button" value="点击3" onclick="bb(3)" />
</div>
</div>
</body>
㈥ eclipse JSP怎么设置背景图片的大小,这个图片怎么才能显示一次,重叠了,求解!
给背景图设置no-repeat属性,就不会重复填充
㈦ jsp背景图片如何设置
1、修改背景图片和动态语言类【jsp】并无关联。
2、背景图片是css属性background来设置的。具体使用:
background:url(images/xx.jpg) no-repeat center center;
url()是背景存放位置。
no-repeat不平铺,就是图片多大就展示多大,还有其他的平铺方式。repeat-x:横向平铺,repeat-y纵向平铺,repeat:横向纵向平铺。
center center是背景显示在容器里头的位置,当然也可以使用10px 10px像素来表示从什么地方开始显示。