所以我有一个我编码的网站ZaxApps。我有一个固定的菜单栏,当你滚动时,它会和你在一起。但我也有一个标志,我想要保持固定在顶部和酒吧。任何人对如何做到这一点都有任何想法?
答案 0 :(得分:0)
您需要将图像保持为固定位置,对条形图的方式,然后进行一些位置调整以正确定位,请参考以下代码段:
function A () {
this.name = "A";
}
A.prototype.a = function () {
console.log("this is a"+this.name);
}
function B () {
this.name = "B";
}
B.prototype.b = function () {
console.log("this is b"+this.name);
}
function C() {
this.name = "C";
A.call(this);
B.call(this);
}
C.prototype = Object.assign({}, A.prototype, B.prototype);
C.prototype.constructor = C;
C.prototype.c = function () {
console.log("this is c"+this.name);
}
var x = new C();
x.a(); //this is aB
x.b(); //this is bB
x.c(); //this is cB
希望您通过将内联样式添加到适当的类或创建新样式来避免内联样式...:)
答案 1 :(得分:0)
在CSS中试试这个 你从一个班级给你的中心
center{
position: fixed;
text-align: center;
width: 100%;
}
然后你给h1
提供最高150px的保证金