引入了fb
This commit is contained in:
parent
62464051c3
commit
5c6e6b0516
@ -1,71 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh_CN">
|
||||
<head>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
<script>
|
||||
//designWidth:设计稿的实际宽度值,需要根据实际设置
|
||||
//maxWidth:制作稿的最大宽度值,需要根据实际设置
|
||||
//这段js的最后面有两个参数记得要设置,一个为设计稿实际宽度,一个为制作稿最大宽度,例如设计稿为750,最大宽度为750,则为(750,750)
|
||||
(function (designWidth, maxWidth) {
|
||||
var doc = document,
|
||||
win = window,
|
||||
docEl = doc.documentElement,
|
||||
remStyle = document.createElement("style"),
|
||||
tid;
|
||||
//designWidth:设计稿的实际宽度值,需要根据实际设置
|
||||
//maxWidth:制作稿的最大宽度值,需要根据实际设置
|
||||
//这段js的最后面有两个参数记得要设置,一个为设计稿实际宽度,一个为制作稿最大宽度,例如设计稿为750,最大宽度为750,则为(750,750)
|
||||
(function (designWidth, maxWidth) {
|
||||
var doc = document,
|
||||
win = window,
|
||||
docEl = doc.documentElement,
|
||||
remStyle = document.createElement("style"),
|
||||
tid;
|
||||
|
||||
function refreshRem() {
|
||||
function refreshRem() {
|
||||
|
||||
var width = docEl.getBoundingClientRect().width;
|
||||
// maxWidth = maxWidth || 540; //不需要判断最大宽度
|
||||
// width > maxWidth && (width = maxWidth);
|
||||
var rem = width * 100 / designWidth;
|
||||
console.log(rem)
|
||||
var width = docEl.getBoundingClientRect().width;
|
||||
// maxWidth = maxWidth || 540; //不需要判断最大宽度
|
||||
// width > maxWidth && (width = maxWidth);
|
||||
var rem = width * 100 / designWidth;
|
||||
console.log(rem)
|
||||
|
||||
remStyle.innerHTML = 'html{font-size:' + rem + 'px;}';
|
||||
}
|
||||
remStyle.innerHTML = 'html{font-size:' + rem + 'px;}';
|
||||
}
|
||||
|
||||
if (docEl.firstElementChild) {
|
||||
docEl.firstElementChild.appendChild(remStyle);
|
||||
} else {
|
||||
var wrap = doc.createElement("div");
|
||||
wrap.appendChild(remStyle);
|
||||
doc.write(wrap.innerHTML);
|
||||
wrap = null;
|
||||
}
|
||||
//要等 wiewport 设置好后才能执行 refreshRem,不然 refreshRem 会执行2次;
|
||||
refreshRem();
|
||||
if (docEl.firstElementChild) {
|
||||
docEl.firstElementChild.appendChild(remStyle);
|
||||
} else {
|
||||
var wrap = doc.createElement("div");
|
||||
wrap.appendChild(remStyle);
|
||||
doc.write(wrap.innerHTML);
|
||||
wrap = null;
|
||||
}
|
||||
//要等 wiewport 设置好后才能执行 refreshRem,不然 refreshRem 会执行2次;
|
||||
refreshRem();
|
||||
|
||||
win.addEventListener("resize", function () {
|
||||
clearTimeout(tid); //防止执行两次
|
||||
tid = setTimeout(refreshRem, 300);
|
||||
}, false);
|
||||
win.addEventListener("resize", function () {
|
||||
clearTimeout(tid); //防止执行两次
|
||||
tid = setTimeout(refreshRem, 300);
|
||||
}, false);
|
||||
|
||||
win.addEventListener("pageshow", function (e) {
|
||||
if (e.persisted) { // 浏览器后退的时候重新计算
|
||||
clearTimeout(tid);
|
||||
tid = setTimeout(refreshRem, 300);
|
||||
}
|
||||
}, false);
|
||||
win.addEventListener("pageshow", function (e) {
|
||||
if (e.persisted) { // 浏览器后退的时候重新计算
|
||||
clearTimeout(tid);
|
||||
tid = setTimeout(refreshRem, 300);
|
||||
}
|
||||
}, false);
|
||||
|
||||
if (doc.readyState === "complete") {
|
||||
doc.body.style.fontSize = "16px";
|
||||
} else {
|
||||
doc.addEventListener("DOMContentLoaded", function (e) {
|
||||
doc.body.style.fontSize = "16px";
|
||||
}, false);
|
||||
}
|
||||
})(1366, 1024);
|
||||
if (doc.readyState === "complete") {
|
||||
doc.body.style.fontSize = "16px";
|
||||
} else {
|
||||
doc.addEventListener("DOMContentLoaded", function (e) {
|
||||
doc.body.style.fontSize = "16px";
|
||||
}, false);
|
||||
}
|
||||
})(1366, 1024);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
|
||||
Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</html>
|
||||
<script>
|
||||
window.fbAsyncInit = function () {
|
||||
FB.init({
|
||||
appId: '277826133389999',
|
||||
autoLogAppEvents: true,
|
||||
xfbml: true,
|
||||
version: 'v8.0'
|
||||
});
|
||||
};
|
||||
</script>
|
||||
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
4
src/import-png.d.ts
vendored
4
src/import-png.d.ts
vendored
@ -11,4 +11,6 @@ declare module "ant-design-vue/es/locale/en_US" {
|
||||
declare module "ant-design-vue/es/locale/zh_CN" {
|
||||
const value: any;
|
||||
export default value;
|
||||
}
|
||||
}
|
||||
|
||||
declare var FB: any;
|
@ -53,6 +53,7 @@ export default createStore({
|
||||
setUserInfo(state, userinfo){
|
||||
userinfo.money = userinfo.money.toString()
|
||||
state.userinfo = userinfo
|
||||
state.islogin = true;
|
||||
},
|
||||
login(state, islogin: boolean){
|
||||
state.islogin = islogin;
|
||||
|
@ -92,7 +92,7 @@
|
||||
<div class="icons">
|
||||
<img src="@/static/images/weixin.png" alt="" class="icon" />
|
||||
<img src="@/static/images/weibo.png" alt="" class="icon" />
|
||||
<img src="@/static/images/facebook.png" alt="" class="icon" />
|
||||
<img src="@/static/images/facebook.png" alt="" class="icon" @click="slogin(3)" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -249,6 +249,18 @@ export default defineComponent({
|
||||
function navto(){
|
||||
router.push("/about")
|
||||
}
|
||||
|
||||
function slogin(index: number){
|
||||
console.log(index)
|
||||
if(index == 3){
|
||||
window.FB.login(function(response: any){
|
||||
console.log(response)
|
||||
// handle the response
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
formLayout,
|
||||
tabselected,
|
||||
@ -265,7 +277,8 @@ export default defineComponent({
|
||||
sublogin,
|
||||
videolist,
|
||||
tovideoxq,
|
||||
navto
|
||||
navto,
|
||||
slogin
|
||||
};
|
||||
},
|
||||
});
|
||||
|
@ -367,6 +367,7 @@ export default defineComponent({
|
||||
position: relative;
|
||||
left: 80px;
|
||||
top: 11px;
|
||||
display: inline-block;
|
||||
}
|
||||
.submit {
|
||||
font-size: 10px;
|
||||
|
Loading…
Reference in New Issue
Block a user