私は混乱している JavaScript をいくつか持っています。
「著作権」css クラス (div) を contaioning div の下部、つまりページの下部に配置したいと考えています。
if(thisRatio>=0 && thisRatio<=1){
$(this).css("background-position", "50% " + (90-thisRatio*400) + "px");
$(".black-shield", $(this)).css("opacity", Math.min(0.6, Math.max(0,thisRatio*4-1.8)));
if(thisAbsPos<-660 && thisAbsPos>-1350){
$(".copyright", $(this))
.css("margin-top", 800 + (-660 - thisAbsPos))
.css("margin-bottom", 600 - (-660 - thisAbsPos));
}else if(thisAbsPos<=-1350){
$(".copyright", $(this))
.css("margin-top", 800 + (-660 +1350))
.css("margin-bottom", 600 - (-660 +1350));
}else if(thisAbsPos>=-660){
}
}
どんな助けでも大歓迎です。