Skip to content

Instantly share code, notes, and snippets.

@13hoop
13hoop / .html
Created April 9, 2017 16:37
slideDome_ fadeout/in
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>渐变轮播DEMO</title>
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<style>
ul,a,li {
margin:0;
padding: 0;
@13hoop
13hoop / .html
Last active April 10, 2017 23:56
sildeshow dome
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>轮播</title>
<link rel="stylesheet" href="style.css">
<style>
.banner {
margin: 0 auto;
width: 1000px;
@13hoop
13hoop / .html
Created March 30, 2017 11:23
auto-loading + lazy loading
<!DOCTYPE html>
<html lang="en">
<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>news like sspai</title>
<style>
* {margin: 0;padding: 0}
html {
@13hoop
13hoop / .html
Created March 29, 2017 05:50
lazy loadImages
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
* {
margin: 0;
padding: 0;
}
@13hoop
13hoop / .html
Last active March 24, 2017 07:22
show some iterms
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery002</title>
<link rel="stylesheet" href="demoStyle.css">
<style>
* {padding: 0; margin: 0;
font-size:12px}
.page {
@13hoop
13hoop / .html
Last active March 24, 2017 00:06
nvg demo: jQuery events
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery 初探</title>
<!--<link rel="stylesheet" href="demoStyle.css">-->
<style>
* {padding: 0; margin: 0;
font-size:15px}
@13hoop
13hoop / .js
Created March 16, 2017 04:29
insertSort
var is = function(a) {
console.log('原' + a)
for (var i=1; i < a.length; i++) {
var temp = a[i]
var j = i
while(a[j] < a[j-1] && j > 0) {
console.log(' -'+ i + '- ' + a[j] + ' swap ' + a[j-1])
a[j] = a[j-1]
a[j-1] = temp
j--
@13hoop
13hoop / iframe.html
Last active March 12, 2017 09:38
跨域的一般操作
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
<style>
body {
background: palevioletred;
@13hoop
13hoop / .html
Last active March 11, 2017 12:57
loadMore
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>server-mock使用说明</title>
<style>
body {
background: #eee;
}
@13hoop
13hoop / index.html
Created December 20, 2016 09:44 — forked from anonymous/index.html
JS Bin // source http://jsbin.com/meliyuh
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
* {
margin: 0;
padding: 0px;