Skip to content

Instantly share code, notes, and snippets.

View sylingd's full-sized avatar
😎
Make some difference

泷涯 sylingd

😎
Make some difference
View GitHub Profile
@sylingd
sylingd / index.html
Last active September 9, 2019 06:48
infinity demo
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>App</title>
</head>
<body>
<div id="app"><div id="scroll" class="scroll-wrapper"><div class="scroll-content"></div></div></div>
@sylingd
sylingd / es5.js
Last active December 15, 2018 16:41
JavaScript extend demo
function People (name) {
this.name = name;
}
People.prototype.getName = function() {
return this.name;
}
function Student(name) {
People.call(this, name);
this.learn = function() {