Skip to content

Instantly share code, notes, and snippets.

View itboos's full-sized avatar
🎯
Focusing

Zack Zhong itboos

🎯
Focusing
  • ShenZhen, China
View GitHub Profile
@itboos
itboos / ClickLi.html
Created September 12, 2016 09:28
点击Li实现循环弹出自己的索引
<!doctype html>
<html lang="en" ng-app="myTest">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>今天是9月12号,a new day!</title>
<style type="text/css">
#ul1 li{
list-style-type: none;
width:200px;
@itboos
itboos / cloudSettings
Last active December 9, 2020 13:55
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-12-04T06:04:44.561Z","extensionVersion":"v3.4.3"}
@itboos
itboos / blob_video_src.html
Created May 6, 2018 08:48
使用 blob 视频地址作为video的SRC-demo
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no">
<title>blob 视频地址-demo</title>
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
@itboos
itboos / axioshttp.js
Created July 3, 2018 12:53
axios封装请求
/* eslint--disable */
import config from './config';
let url = '';
// 响应拦截器即异常处理
axios.interceptors.response.use(response => {
console.log('响应拦截器:', response);
return response;
}, error => {
@itboos
itboos / .html
Created October 17, 2019 02:41
css3 transition 实现div宽度以中心为原点向两边伸长
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>css3 transition 实现div宽度以中心为原点向两边伸长 </title>
<style type="text/css">
.container {
text-align: center;
}