Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
netnr committed Feb 12, 2022
1 parent bd96b28 commit af4f363
Show file tree
Hide file tree
Showing 219 changed files with 10,989 additions and 88,265 deletions.
2 changes: 1 addition & 1 deletion mix/Chat/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ <h4 class="modal-title">用户名/Account</h4>
</div>
</div>

<script src="https://s1.netnr.eu.org/libs/mimc-webjs-sdk/1.0.3/mimc-min_1_0_3.js"></script>
<script src="https://s1.netnr.eu.org/libs/mix/mimc-min_1_0_3.js"></script>

<link href="https://npm.elemecdn.com/[email protected]/src/netnrmd.css" rel="stylesheet" />
<script src="https://npm.elemecdn.com/[email protected]/src/netnrmd.bundle.js"></script>
Expand Down
24 changes: 0 additions & 24 deletions mix/FontAwesome/assets/js/site.js

This file was deleted.

1 change: 0 additions & 1 deletion mix/FontAwesome/assets/libs/zclip/jquery.zclip.min.js

This file was deleted.

Binary file not shown.
29 changes: 25 additions & 4 deletions mix/FontAwesome/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Font Awesome,一套绝佳的图标字体库和CSS框架">
<meta name="author" content="fontawesome.dashgame.com">
<meta name="keywords" content="Font Awesome,Bootstrap,CSS,图标,字体,icon font,极风游,极风游科技,dashgame">
<meta name="keywords" content="Font Awesome,Bootstrap,CSS,图标,字体,icon font">
<link rel="shortcut icon" href="favicon.ico">
<title>Font Awesome,一套绝佳的图标字体库和CSS框架</title>

Expand Down Expand Up @@ -1827,16 +1827,37 @@ <h2 class="page-header">标志</h2>
<a href="https://github.com/FortAwesome/Font-Awesome/issues">问题与建议</a> &middot;
</div>
<div class="dashgame">
Font Awesome 4.7.0 中文文档由 <a href="http://www.dashgame.com" target="_blank">极风游科技</a> 翻译整理。&nbsp;&nbsp;
Font Awesome 4.7.0 中文文档由
</div>
</div>

<script src="https://npm.elemecdn.com/[email protected]/dist/jquery.min.js"></script>
<script src="https://npm.elemecdn.com/[email protected]/dist/js/bootstrap.min.js"></script>

<script src="assets/js/jquery.nav.min.js"></script>
<script src="assets/libs/zclip/jquery.zclip.min.js"></script>
<script src="assets/libs/toastr/toastr.min.js"></script>
<script src="assets/js/site.js"></script>

<script>
$('#icon-carousel').carousel({ interval: 5000 });
$('#main-nav').onePageNav({ currentClass: 'active', });

if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
$('.fa-hover a').each(function (i, e) {
$(this).removeClass("col-xs-11");
});
} else {
$('.fa-hover').each(function (i, e) {
var tempEle = $(this);
tempEle.append("<span class='clipboard text-muted' style='line-height: 32px;'><i class='fa fa-clipboard'></i></span>");

tempEle.find('.clipboard').click(function () {
var copyText = "fa-" + tempEle.text().substr(12).replace(" (alias)", "")
navigator.clipboard.writeText(copyText).then(() => {
toastr.warning('已成功复制标签,请直接粘贴')
})
})
});
}
</script>
</body>
</html>
4 changes: 2 additions & 2 deletions mix/JSONEditor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<meta name="keywords" content="JSON编辑器 NET牛人" />
<meta name="description" content="JSON编辑器 JSON格式化工具 JSON在线工具" />

<link href="https://npm.elemecdn.com/jsoneditor@9.5.10/dist/jsoneditor.min.css" rel="stylesheet">
<script src="https://npm.elemecdn.com/jsoneditor@9.5.10/dist/jsoneditor.min.js"></script>
<link href="https://npm.elemecdn.com/jsoneditor@9.7.2/dist/jsoneditor.min.css" rel="stylesheet">
<script src="https://npm.elemecdn.com/jsoneditor@9.7.2/dist/jsoneditor.min.js"></script>
<script src="https://npm.elemecdn.com/[email protected]/src-noconflict/theme-tomorrow_night.js"></script>

<style>
Expand Down
20 changes: 9 additions & 11 deletions mix/VIPVideo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta charset="utf-8" />
<meta http-equiv=X-UA-Compatible content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="referrer" content="never">

<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />

Expand Down Expand Up @@ -58,9 +59,9 @@

//线路
var vipSource = [
"https://vip.bljiex.com/?v=",
"https://17kyun.com/api.php?url=",
"https://okjx.cc/?url="
"https://sb.5gseo.net/?url=",
"https://jx.quanmingjiexi.com/?url=",
"https://client.uiul.xyz/dplayer/?url=",
];

//初始化
Expand All @@ -71,15 +72,12 @@
htm.push('<option value="' + vipSource[i++] + '">线路 ' + i + '</option>');
}
document.getElementById('seVtype').innerHTML = htm.join('');

//带参播放
var pars = location.search.toLowerCase().substring(1).split('&');
for (var i = 0; i < pars.length; i++) {
var pi = pars[i];
if (pi.indexOf('url=') >= 0) {
document.getElementById('txtVipUri').value = decodeURIComponent(pi.substring(4));
document.getElementById('btnPlay').click();
break;
}
var playUrl = new URLSearchParams(location.search).get("url");
if (playUrl) {
document.getElementById('txtVipUri').value = playUrl.split('?')[0];
document.getElementById('btnPlay').click();
}
}

Expand Down
8 changes: 0 additions & 8 deletions mix/clean-css/README.md

This file was deleted.

Loading

1 comment on commit af4f363

@vercel
Copy link

@vercel vercel bot commented on af4f363 Feb 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

Please sign in to comment.