回答
問題通過使用下面的一段代碼解決:
CSS:
position: fixed;
right: 0px;
top: 0px;
width: 308px;
height: 100%;
color: white;
background-color: bisque;
opacity: 0;
z-index: 1;
然後在JavaScript我已不透明度屬性只是設置爲1。
JS:
(function() {
"use strict";
var page = WinJS.UI.Pages.define("/default.html", {
ready: function (element, options) {
btnname.addEventListener("click", togglePanelUI, false);
myPanel = element.querySelector("#divname"); } //div name is name of div which u wants to slide
});
var animating = WinJS.Promise.wrap();
var myPanel;
function togglePanelUI() { // If element is already animating, wait until current animation is complete before starting the show animation.
animating = animating
.then(function() {
// Set desired final opacity on the UI element.
myPanel.style.opacity = "1";
// Run show panel animation.
// Element animates from the specified offset to its actual position.
// For a panel that is located at the edge of the screen, the offset should be the same size as the panel element.
// When possible, use the default offset by leaving the offset argument empty to get the best performance.
return WinJS.UI.Animation.showPanel(myPanel);
});
}
})();
瞭解有關Windows 8中的動畫的更多信息,看看here
jQuerys $.animate
對此很好,see here。
但是,在Windows 8中使用jQuery的應用是有問題的,由於安全限制,我已經寫了一個博客帖子,並提供了Windows 8的準備jQuery的版本出現,我們來看一看:http://www.incloud.de/2012/08/windows-8-using-jquery-for-app-development/
我會推薦CSS像@ jfriend00提到的過渡。 Windows 8中的jQuery動畫並非硬件加速,而是CSS3轉換。 –
jQuery在內部使用css3轉換,如果它們受支持。就我而言,JavaScript動畫僅用作舊版瀏覽器的後備。 –
下面是一個例子使用CSS轉換。
/* CSS */
#myDiv {
width:300px;
height:300px;
box-sizing:border-box;
position:relative;
left:-300px;
border:2px solid;
transition:1s;
}
然後在JavaScript中,你只需設置left
屬性編程。在我的情況下,我做了它響應按鈕點擊。
// js
element.querySelector("#go").onclick = function(e) {
element.querySelector("#myDiv").style.left = "0px";
};
那裏你有它。硬件加速和一切。
非常感謝代碼@foster。 但代碼立即顯示div,而不是滑動div。 –
考慮使用WinJS本土動畫庫。對於您的罐頭WinJS.UI.Animation.enterContent或WinJS.UI.Animation.showPanel可能會有用。
- 1. 在jquery中滑動div
- 2. jQuery滑動div
- 3. 動態滑動div
- 4. 在滾動讓div下滑
- 5. Div滑動在另一個div上
- 6. 使用jQuery滑動div滑動
- 7. 在網頁中左右滑動div
- 8. 在Angular中從左到右滑動div
- 9. 如何在jQuery中滑動DIV?
- 10. 在jQuery中滑動水平div
- 11. 在滾動動畫/滑動div
- 12. 連續滑動div
- 13. 滾動div滑塊
- 14. jQuery滑塊和可拖動div問題 - Div滑塊和滑塊
- 15. Jquery滑動/動畫div
- 16. DIV動畫滑動問題
- 17. 如何在Windows8中
- 18. jQuery平滑滑動DIV高度
- 19. 向下滑動嵌套div
- 20. jQuery - 平滑滾動到div
- 21. 水平滑動div與JQuery
- 22. 用jQuery水平滑動DIV
- 23. 滑動div加上url
- 24. 使用javascript滑動div
- 25. 滑動的div導航
- 26. 我想滑動div id =「banner」?
- 27. 修改滑動javascript div
- 28. jQueryUI滑塊不滾動div
- 29. 如何製作div滑動
- 30. 從左側滑動DIV
那麼在javascript中做它就像重新發明輪子..你計劃在未來的未來使用JS的動畫很多嗎?有許多JS庫你可以考慮使用..但作爲一個基地,你可能想開始使用JQuery .. –
閱讀CSS3轉換。他們會爲你做所有的動畫。 – jfriend00
還可以使用內置的動畫爲您的應用程序提供與其他Windows 8應用程序一致的感受: http://msdn.microsoft.com/en-us/library/windows/apps/br229780.aspx –