全く動作していないようですので、私のCSSトランジションに助けが必要です。ここに私のCSSコードです。私は何かを逃したと思いますか?CSS "all"トランジションが動作していません
/*header navigation in homepage*/
.home header#main-header {
position: absolute;
top: auto !important;
bottom: 0px !important;
background: rgba(0, 0, 0, 0.7);
transition: all 3s ease-in-out;
}
.home header#main-header.et-fixed-header {
position: fixed !important;
top: 0px !important;
bottom: auto !important;
transition: all 3s ease-in-out;
}
/*end of header navigation in homepage*/
/*full width slider in homepage*/
.fs{
position:absolute;
top:0; right:0; bottom:0; left:0;
z-index: 10;
background-position:bottom;
background-size: inherit;
}
.home #page-container{margin-top:100vh !important;}
/*end of full width slider in homepage*/
ああ、ここでは、ウェブサイトへのリンクがあります - 私は何をしようとしている>http://concept1.mystudioengine.site/ は、スクロールのアニメーションを持っていることになって、ヘッダーナビゲーションバーです。助けてください。アドバイスをいただければ幸いです。
あなたはfixed' 'へabsolute''から移行することはできません。私たちに問題の作業デモを投稿してください。問題の[mcve]が必要です。 –
私はこのサイトのヘッダーナビゲーターのアニメーションをコピーしようとしていました。http://www.divithemeexamples.com/Star-Cafe-Divi-Child-Theme/ –