2018 .8.11’遇到的問題

  覆蓋element
.el-table >>> th {
          background-color: #eee;
      }

 https://www.jianshu.com/p/9caf9e7aaca4javascript

bg圖片遮罩,用before記得用position:relative;
用overflow時zoom:1 會擋住,這時候能夠不用float:left 能夠選擇display:inline-block 或者用flex佈局
作pc端通常經常使用margin:0 auto; max-width:1920px;min-width:1200px
Math.random用setInter改變元素,不要寫在括號裏,頁面或重渲染,這時候會一直隨機
css3動畫能夠在調試最後的css查看。css

jq實現異步操做方式,// async: false,頁面會堵塞。使用同步等待請求回來再進行其餘操做,卡死,不過能夠防止瀏覽器攔截,解決辦法,不一樣步,繼續異步打開一個窗口,再操做窗口java

function name() {
let defer = $.Deferred();
$.ajax({
url: `${$this.$HOST_NAME}/games/login`,
timeout:2000,
headers: {
"Content-Type": "application/x-www-form-urlencoded",
Authorization: `${localStorage.token}`
},
// async: false,
type: "post",
data: {
gameName: datas.gameName,
userType: "0",
platform: datas.platform
},
success: res => {
if (res && res.code == 200) {
defer.resolve(res.data)
} else {
alert(res.message);
}
}
});
return defer.promise();
}

$.when(name()).done(function(res){
console.log(res)
window.open(
res.url,
"newwindow",
"height=750,width=1285, top=0, left=" +
(window.screen.availWidth - 1295) / 2 +
""
);
 
});
相關文章
相關標籤/搜索