Skip to content

Instantly share code, notes, and snippets.

View B1ur's full-sized avatar

滑森 B1ur

  • 西安电子科技大学
View GitHub Profile
var a = [2,4,5,63,4,5,63,2,4,43];
 
function quicksort(arr)
{
if (arr.length == 0)
return [];
 
var left = new Array();
var right = new Array();
var pivot = arr[0];
@B1ur
B1ur / 打字机效果.html
Last active September 5, 2016 05:01
打字
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script src="../jquery-2.1.1.js"></script>
<style>
div:after{content: '|';animation: flash 0.5s steps(2,start) infinite;-webkit-animation: flash 0.5s steps(2,start) infinite;}
@keyframes flash {
0%{visibility:visible;}