小小导航
网盘
wodemo网盘
php定位当前用户城市
Photo2Text
图转字符
patorjk

ASCII Text

http://www.kammerl.de/ascii/AsciiSignature.php
https://www.branah.com/ascii-converter
http://patorjk.com/
http://patorjk.com/software/taag/#p=display&f=Big&t=52M%0A
https://github.com/abcfy2/motd

工资计算器

bing每日图片
无所不能的Chrome-->代码编辑器
Cmd Markdown编辑器
好用的Markdown编辑器一览

在线ORC工具

onlineocr
free! 在线文字识别
convertpdftoword
转换器
百度OCR识别
百度OCR识别企业版

Chrome 内置编辑器

data:text/html,<body oninput="i.srcdoc=h.value+'<style>'+c.value+'</style><script>'+j.value+'</script>'"><style>textarea,iframe{width:100%;height:50%}body{margin:0}textarea{width:33.33%;font-size:18}</style><textarea placeholder=HTML id=h></textarea><textarea placeholder=CSS id=c></textarea><textarea placeholder=JS id=j></textarea><iframe id=i>



在线生成二维码

qr
Emoji表情更新及时且比较全的网站

https://mp.weixin.qq.com/s/b24iFkH-iZTL7q4Ppyfpkw
生成器

贴图code如 <img src="" title="" />



<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>CSS3-图片模态框</title> 
<style>
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
}

@keyframes zoom {
    from {transform: scale(0.1)} 
    to {transform: scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
</style>
</head>
<body>

<h2>图片模态框</h2>
<p>本实例演示了如何结合 CSS 和 JavaScript 来一起渲染图片。</p><p>
首先,我们使用 CSS 来创建 modal 窗口 (对话框), 默认是隐藏的。<p>
<p>然后,我们使用 JavaScript 来显示模态窗口,当我们点击图片时,图片会在弹出的窗口中显示:</p>
<img id="myImg" src="http://www.runoob.com/wp-content/uploads/2016/04/img_lights.jpg" alt="Northern Lights, Norway" width="300" height="200">

<!-- The Modal -->
<div id="myModal" class="modal">
  <span class="close">×</span>
  <img class="modal-content" id="img01">
  <div id="caption"></div>
</div>

<script>
// 获取模态窗口
var modal = document.getElementById('myModal');

// 获取图片模态框,alt 属性作为图片弹出中文本描述
var img = document.getElementById('myImg');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
    modal.style.display = "block";
    modalImg.src = this.src;
    modalImg.alt = this.alt;
    captionText.innerHTML = this.alt;
}

// 获取 <span> 元素,设置关闭模态框按钮
var span = document.getElementsByClassName("close")[0];

// 点击 <span> 元素上的 (x), 关闭模态框
span.onclick = function() { 
    modal.style.display = "none";
}
</script>

</body>
</html>

更:已被墙

估计您不会看下面的介绍和图片,简单的就看这里的吧

这款号称不会被 查 水 表 的软件不仅支持跨平台,而且开源,端对端 加 密 通讯;
既能像平常通讯工具一样愉快地聊天,又能保护聊天过程中不被 不 可 抵 抗 的某 方窥 视
不限于对 隐私 有特 殊要求(洁癖)人群,但不建议使用 guo 产通讯软件进行相对秘 密的交流;
某Q 某博 某信 某宝 某邮箱 某度 某数字等 guo 产出品,能不用就不用吧,你用随你喜欢喽
你 懂 的!不懂也别问我,我不懂!!!

阅读全文


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>CSS3动画</title> 
<style>
#animated_div
{
width:76px;
height:47px;
background:#92B901;
color:#ffffff;
position:relative;
font-weight:bold;
font-size:20px;
padding:10px;
animation:animated_div 5s 1;/* @keyframes(关键帧动画),动画名称,开始到结束时间,重复几次 */
-moz-animation:animated_div 5s 1;
-webkit-animation:animated_div 5s 1;
-o-animation:animated_div 5s 1;
border-radius:5px;
-webkit-border-radius:5px;
}

@keyframes animated_div
{
0%      {transform: rotate(0deg);left:0px;}
25%     {transform: rotate(20deg);left:0px;}
50%     {transform: rotate(0deg);left:500px;}
55%     {transform: rotate(0deg);left:500px;}
70%     {transform: rotate(0deg);left:500px;background:#1ec7e6;}
100%    {transform: rotate(-360deg);left:0px;}
}

/* Safari and Chrome */
@-webkit-keyframes animated_div
{
0%      {-webkit-transform: rotate(0deg);left:0px;}
25%     {-webkit-transform: rotate(20deg);left:0px;}
50%     {-webkit-transform: rotate(0deg);left:500px;}
55%     {-webkit-transform: rotate(0deg);left:500px;}
70%     {-webkit-transform: rotate(0deg);left:500px;background:#1ec7e6;}
100%    {-webkit-transform: rotate(-360deg);left:0px;}
}

/* Firfox */
@-moz-keyframes animated_div
{
0%   {-moz-transform: rotate(0deg);left:0px;}
25%  {-moz-transform: rotate(20deg);left:0px;}
50%  {-moz-transform: rotate(0deg);left:500px;}
55%  {-moz-transform: rotate(0deg);left:500px;}
70%  {-moz-transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {-moz-transform: rotate(-360deg);left:0px;}
}

/* Opera */
@-o-keyframes animated_div
{
0%   {transform: rotate(0deg);left:0px;}
25%  {transform: rotate(20deg);left:0px;}
50%  {transform: rotate(0deg);left:500px;}
55%  {transform: rotate(0deg);left:500px;}
70%  {transform: rotate(0deg);left:500px;background:#1ec7e6;}
100% {transform: rotate(-360deg);left:0px;}
}
</style>
<h2>CSS3 动画</h2>
<hr>
<div id="animated_div">CSS3<br><span style="font-size:10px">动画</span>
</div>

</body>
</html>

简略写法和完整写法

-webkit-animation:myfirst 5s linear 2s infinite alternate;

-webkit-animation-name:myfirst;
-webkit-animation-duration:5s;
-webkit-animation-timing-function:linear;
-webkit-animation-duration:2s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-direction:alternate;






之前的东西都不要了,不要了,从头开始...

网上有很多替代个人网站的东西,
为什么还要建个站?瞎折腾?
毕竟是别人的,主要是不确定因素太多
不去试试就永远不知道过程是如何
所以就有了这个站点
简单就好,只是记录一些东西...
但愿自己会坚持下去