㈠ dw中用HTML如何将背景图片平铺
需要准备的材料分别有:电脑、浏览器、dw编辑器。
1、首先,打开dw编辑器,新建html文件,例如:index.html。
㈡ jsp中什么让一张图片实现全屏且不重复‘
jsp让图片实现全屏的方式如下代码所示:
<template><div class="hello"></div></template><script>export default {name: "HelloWorld",data() {return {};}};</script><style scoped>.hello {background: url("../../../static/imagic/sy.jpg") no-repeat;height: 100%;width: 100%;background-size: cover;//全屏展示}</style>
background: url("../../../static/imagic/sy.jpg") ——图片路径的位置;
no-repeat—— 图片不重复;
center 0px——center是距离页面左边的定位,0px是距离页面上面的定位;
background-position: center 0——就是图片的定位,同上;
background-size: cover;——把背景图像扩展至足够大,以使背景图像完全覆盖背景区域。背景图像的某些部分也许无法显示在背景定位区域中;
min-height: 100vh;——视窗的高度,“视区”所指为浏览器内部的可视区域大小,即window.innerWidth/ window.innerHeight大小
㈢ 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像素来表示从什么地方开始显示。