第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

是否可以在 Wicket 中進行平滑的頁面導航轉(zhuǎn)換?

是否可以在 Wicket 中進行平滑的頁面導航轉(zhuǎn)換?

慕萊塢森 2023-10-12 16:47:04
我想在 Wicket Java 框架中的頁面導航之間進行一些平滑的轉(zhuǎn)換。是否可以使用 Wicket 工具、javascript 和 css?我找不到辦法做到這一點。感謝您的任何答復。
查看完整描述

1 回答

?
泛舟湖上清波郎朗

TA貢獻1818條經(jīng)驗 獲得超3個贊

Wicket 不為此提供解決方案。大多數(shù) Wicket 應用程序使用全頁重新提醒/重定向或 Ajax 來僅更新頁面的一部分,而不是整個頁面。


我建議您嘗試使用 CSS 關(guān)鍵幀。這個想法是在這兩個 JS 事件上將 CSS 類添加到頁面正文:beforeunload和DOMContentLoaded(又名domready)。當beforeunload被觸發(fā)時,您需要刪除fade-in并添加fade-outCSS 類。并對 執(zhí)行相反的操作DOMContentLoaded。


CSS 將如下所示:


/* make keyframes that tell the start state and the end state of our object */


 @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

 @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

 @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }


 .fade-in {

      opacity:0;  /* make things invisible upon start */

      -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */

      -moz-animation:fadeIn ease-in 1;

      animation:fadeIn ease-in 1;


      -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/

      -moz-animation-fill-mode:forwards;

      animation-fill-mode:forwards;


      -webkit-animation-duration:1s;

      -moz-animation-duration:1s;

      animation-duration:1s;

 }

我不太擅長 CSS,所以最好向 Google 詢問更多信息。


查看完整回答
反對 回復 2023-10-12
  • 1 回答
  • 0 關(guān)注
  • 130 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號