This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function yuan (a,b){ | |
let c=(a+b)*3 | |
let d= (3*a+b)*(a+(3*b)) | |
let e = Math.sqrt(d) | |
let f= c-e | |
return Math.PI * (f/2) | |
} | |
// 参考链接 https://zh.wikipedia.org/wiki/%E6%A4%AD%E5%9C%86 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul uk-tab uk-switcher="animation: uk-animation-fade"> | |
<li><a href="#"> | |
<h3>Changelog</h3> | |
</a></li> | |
<li><a href="#"> | |
<h3>Planned</h3> | |
</a></li> | |
</ul> | |
<ul class="uk-switcher uk-margin"> | |
<li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//原始网站区域 | |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); | |
ga('create', 'UA-104793185-3', 'auto'); | |
ga('send', 'pageview'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//使用官方推荐方法获取 Gid | |
ga(function(tracker) { | |
var clientId = tracker.get('clientId'); | |
console.log('old:',clientId) | |
}); | |
//使用读取cookie的方法获取gid | |
var Get_gid = function getCookie(c_name){ | |
if (document.cookie.length>0){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//原始网站区域 | |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); | |
ga('create', 'UA-104793185-3', 'auto'); | |
ga('send', 'pageview'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<div style="width: 200px;height: 400px;background-color: blue"><button onclick="test()">点击触发</button><h2>子页面效果</h2></div> | |
<script type="text/javascript"> | |
var scriptURL = 'https://www.googletagmanager.com/gtag/js?id=UA-104793185-3'; |