㈠ 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像素來表示從什麼地方開始顯示。