This file contains hidden or 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> | |
<head> | |
<title>ChimePlayer Demo1234</title> | |
<meta charset="utf-8"> | |
<meta name="description" content="ChimePlayer Demo"> | |
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1, maximum-scale=1"> | |
<meta name="mobile-web-app-capable" content="yes"> | |
<link rel="stylesheet" type="text/css" href="./index.css"> |
This file contains hidden or 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 fun(n,o) { | |
console.log(o) | |
return { | |
fun:function(m){ | |
return fun(m,n); | |
} | |
}; | |
} | |
var a = fun(0); a.fun(1); a.fun(2); a.fun(3);//undefined,?,?,? | |
var b = fun(0).fun(1).fun(2).fun(3);//undefined,?,?,? |
This file contains hidden or 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
const fs = require('fs') | |
const path = require('path') | |
const fg = require('fast-glob') | |
const { | |
crlf, chkcrlf, LF | |
} = require('crlf-normalize') | |
function checkLRForBinFile() { | |
console.log() | |
console.log('检查`bin`中的是否非LR格式') |
This file contains hidden or 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
import { TreeSelect } from 'fish'; | |
const TreeNode = TreeSelect.TreeNode; | |
class Demo extends React.Component { | |
state = { | |
value: undefined, | |
expandedKeys: [], | |
}; |
This file contains hidden or 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> | |
<head> | |
<title>Video.js | HTML5 Video Player</title> | |
<!-- Change URLs to wherever Video.js files will be hosted --> | |
<link href="//vjs.zencdn.net/6.2.5/video-js.css" rel="stylesheet" type="text/css"> | |
<!-- video.js must be in the <head> for older IEs to work. --> | |
<script src="//vjs.zencdn.net/6.2.5/video.js"></script> | |
</head> | |
<body> |
This file contains hidden or 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> | |
<head> | |
<title>Video.js | HTML5 Video Player</title> | |
<script src="//libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> | |
<!-- Change URLs to wherever Video.js files will be hosted --> | |
<link href="//vjs.zencdn.net/6.2.5/video-js.css" rel="stylesheet" type="text/css"> | |
<!-- video.js must be in the <head> for older IEs to work. --> | |
<script src="//vjs.zencdn.net/6.2.5/video.js"></script> | |
<script src="//cdn.jsdelivr.net/npm/videojs-flash@2/dist/videojs-flash.min.js"></script> |