我需要创建一个充当视差的页脚。它必须在页面的底部,并且当用户滚动到底部时,页脚会覆盖内容。
就目前而言,我了解到我必须使用固定位置,但随后将页脚附加到import java.util.ArrayList;
import java.util.Scanner;
public class ScanTest {
public static void main(String[] args) {
try (Scanner sc = new Scanner(System.in)) {
ArrayList<String> al = new ArrayList<>();
while (true) {
System.out.println("Please Enter Paragraph + \n");
String readLine = sc.nextLine();
if (readLine.length() == 0) {
break;
}
al.add(readLine);
}
System.out.println("result:"+al);
}
}
}
上,但是我需要将其保留在页面底部。
这是我所拥有的:
viewport
这是我需要的一幅小图。页脚位于底部,滚动到底部时,页脚会覆盖视差https://ibb.co/yQS03Xb之类的内容。
答案 0 :(得分:0)
在页脚上使用background-attachment: fixed;
属性