- 博客(79)
- 收藏
- 关注
原创 2021-07-06
https://d-24.winudf.com/b/APK/Y29tLmpveS5hcHAudnBuXzI5MDAzMl8xNDE5YWVkMA?_fn=V2hhbGVzIFZwbiBBbHdheXMgRnJlZSBGb3IgdXNlIEZhc3QgU2VjcmV0X3YyLjkuMC4wM19hcGtwdXJlLmNvbS5hcGs&_p=Y29tLmpveS5hcHAudnBu&am=MKi9A0yotlH0w4yAd66LYA&at=1625528011&k=ba8a9
2021-07-06 21:03:04
204
原创 The Farmer and the Snake
The Farmer and the SnakeONE WINTER a Farmer found a Snake stiff and frozen with cold. He had compassion on it, and taking it up, placed it in his bosom. The Snake was quickly revived by the warmth, and resuming its natural instincts, bit its benefactor, i
2021-06-06 02:03:04
245
原创 2021-06-05
A MOUNTAIN was once greatly agitated. Loud groans and noises were heard, and crowds of people came from all parts to see what was the matter.While they were assembled in anxious expectation of some terrible calamity, out came a Mouse.山 震有一次,一座大山发生了异动。人们
2021-06-05 23:27:31
181
原创 2021-06-05
The Ass, the Fox, and the LionTHE ASS and the Fox, having entered into partnership together for their mutual protection, went out into the forest to hunt. They had not proceeded far when they met a Lion. The Fox, seeing imminent danger, approached the Lio
2021-06-05 00:07:51
129
原创 The Tortoise and the Eagle
A TORTOISE, lazily basking in the sun, complained to the sea-birds of her hard fate, that no one would teach her to fly. An Eagle, hovering near, heard her lamentation and demanded what reward she would give him if he would take her aloft and float her in
2021-06-04 19:51:02
155
原创 The files and the Honey-pot
The Flies and the Honey Pot苍蝇与蜜罐A number of flies were attracted(吸引) to a jar(罐) of honey which had been overturned(打翻) in a housekeeper’s room, and placing their feet(脚) in it, ate greedily.一罐蜂蜜在房主的房间里被打翻了,引来了许多苍蝇,它们把脚伸进去贪婪地吃着。Their feet, however, bec
2021-06-04 19:40:25
120
原创 The Man and the Lion
A man and a Lion traveled together through the forest. They soon began to boast of their respective superiority to each other in strength and prowess.As they were disputing, they passed a statue carved in stone, which represented “a Lion strangled by a Ma
2021-06-04 19:20:37
153
原创 The farmer and The Cranes
SOME CRANES made their feeding grounds on some plowlands newly sown with wheat. For a long time the Farmer, brandishing an empty sling, chased them away by the terror he inspired; but when the birds found that the sling was only swung in the air, they ceas
2021-06-04 19:00:42
125
原创 伊索寓言 目录
1.好事和坏事2.卖神像的人3.鹰和狐狸4.鹰和屎壳郎5.鹰、穴鸟和牧人6.鹰和狐狸7.中了箭的鹰8.夜莺和鹰9.夜莺和燕子10.雅典的欠债人 11.黑人12.猫和公鸡13.猫和鼠14.猫和鸡15.山羊和牧人16.山羊和驴17.牧人和野山羊19.伊索在造船坊20.公鸡和鹰 21.公鸡和山鹑22.渔夫和金枪鱼23.渔夫们24.吹笛的渔夫25.渔夫和大鱼、小鱼26.渔夫和小狗鱼27.渔夫28.神翠鸟30.肚胀的狐狸 31.狐狸和刺藤33.狐狸和巨蟒34.狐狸和伐木人35.狐狸和鳄鱼36.狐狸和狗37.狐狸和豹3
2021-06-03 02:08:30
9001
原创 2021-06-03
A WOLF who had a bone stuck in his throat hired a Crane, for a large sum, to put her head into his mouth and draw out the bone.When the Crane had extracted the bone and demanded the promised payment, the Wolf, grinning and grinding his teeth, exclaimed: “
2021-06-03 02:02:43
178
原创 The Father and his Sons
Father had a family of sons who were perpetually quarrelling among themselves. When he failed to heal their disputes by his exhortations, he determined to give them a practical illustration of the evils of disunion; and for this purpose he one day told the
2021-06-02 21:26:51
121
原创 Bat and the Weasel_aesop s fables
A BAT who fell upon the ground and was caught by a Weasel pleaded to be spared his life. The Weasel refused, saying that he was by nature the enemy of all birds. The Bat assured him that he was not a bird, but a mouse, and thus was set free.Shortly afterw
2021-06-02 18:51:54
140
原创 单向链表的实现
1<script>let arr=[1,3,4,7,9];let nex=null;//{v:null,n:null}for(let a=arr.length-1;a>=0;a--){nex={v:arr[a],n:nex}}function show(o){alert(o.v);if(o.n!=null){show(o.n)}}show(nex)</script>
2021-05-29 19:07:36
90
原创 关于罗马数字转整数的实现
1<script>// I1 V5 X10 L50 C100 D500 M1000function rmn(s){let rsu=0;for(let a=0;a<s.length;a++){if(a<s.length-1&&s[a]=='I'&&s[a+1]=='V'){rsu+=4;a++}else if(a<s.length-1&&s[a]=='I'&&s[a+1]=='X'){rsu+=9;a+
2021-05-28 05:18:04
100
原创 leetcode 简单
<script>function twosum_1(nums,target){for(let a in nums){let b=nums.indexOf(target-nums[a]),c=a;if(b!=-1){return [c,b]}}}function twosum_2(nums,target){for(let a in nums){for(let b in nums){if(a!=b&&nums[a]+nums[b]==target){return [a,b]}}}
2021-05-26 19:02:14
135
原创 A* A Star 算法
1<style> #show{letter-spacing:10px}</style><div id='show'></div><script>let col=10,row=10,map=[],al=[],bl=[],sn=1,en=95,fit=false,dsmap=[];for(let a=0;a<col*row;a++){map.push(0);let fg=dsfgf(0);show.append(fg);dsmap
2021-05-24 07:56:57
201
原创 DFS算法 动画实现
1<style>#show{letter-spacing:10px}.wt0{color:#ccc}</style><div id='show'></div><script>let col=10,row=10,sn=17,en=15,map=[],dsmap=[],fit=false;for(let a=0;a<col*row;a++){let b=creEmt('span');b.className='wt0';b.inne
2021-05-22 19:54:10
386
原创 DFS 算法
1<style>#show{letter-spacing:10px}.wt0{color:#ccc}</style><div id='show'></div><script>let col=5,row=5,sn=12,en=22,map=[],dsmap=[],fit=false;for(let a=0;a<col*row;a++){let b=creEmt('span');b.className='wt0';b.innerH
2021-05-22 08:16:22
366
2
原创 寻路算法
1<div id='show'></div><script>let col=5,row=8,sn=8,en=31;let map=[],ol=[],block=[];for(let a=0;a<col*row;a++){map.push(0)}toved(sn); for(let a=0;a<ol.length;a++){let l=ol[a]%col-1,u=ol[a]-col,r=ol[a]%col+1,d=ol[a]+col;
2021-05-21 08:04:25
226
原创 canvas绘图_erciyuanfulitu
<canvas id='mcvs' width=300 height=300></canvas><img id='img' src="https://img5.51tietu.net/pic/2019-080802/xr0s03fp520xr0s03fp520.jpg" alt="20160418_193134_007" width="777" height="808" /><script>img.onload=function(){img.widt
2021-05-19 19:45:55
10470
1
原创 image元素的使用
http://img2.guankou.net/i8/dongmanmeinv/7kk/69998/670eaa5972b8c9cc06e9049c3f820.jpghttp://tvax4.sinaimg.cn/large/006WgSkjgy1goif4zcuxkj30u011iaew.jpghttp://tva3.sinaimg.cn/large/006WgSkjgy1gpgz4oq46sj30t017k78x.jpg
2021-05-19 18:56:16
127
原创 纸牌
1<style>.zp[seled=y]{bottom:15px;border:0px solid red}button:active{background:none}.zp button{padding-left:0;text-align:left;width:100%;border:0px solid;background:none;}.zp .zpa{font-size:5px}.zp{position:relative;bottom:0px;display:inline-bl
2021-05-17 08:23:58
397
1
原创 颜色代码复制_转载
<!doctype html><html><head><meta charset="utf-8"><title>颜色代码选取器</title><style>html { box-sizing: border-box; height: 100%;}*,*:before,*:after { box-sizing: inherit;}@media (prefers-reduced-motio
2021-05-14 19:26:14
16300
1
原创 象棋
1有错<style>#show{position:relative;width:270}.qpa{background:none;position:absolute;}.qpabtn{opacity:0.1;border:auto;background:none;}.qpbtn ,.qz{width:30;height:30}.qpb{top:15;left:15;position:absolute;}.qz{transition:0.5s;border-radius:50%;posi
2021-05-14 08:26:09
134
原创 卡片3d翻转
1<style>#box{ width:200;height:200;background:#aaa;border:1px solid;perspective:200px; }#front{transform:rotateY(0deg);transition:1s;position:absolute;box-sizing:border-box;border:1px solid;background:pink;width:100%;height:100%;}#back{transform:
2021-05-13 05:56:04
140
原创 swiper实现
1<style>#show{height:300px;width:270px;overflow:scroll;white-space:nowrap;border:1px solid}#show button{height:100%;width:100%;}</style><div id='show'></div><div id='ctl'></div><script>let creEmt=function(n
2021-05-11 23:20:48
217
原创 日期函数
1<style></style><script>function fhytsf(n,y){let eyts=28;if(n%4==0){eyts=29};let yts=[0,31,eyts,31,30,31,30,31,31,30,31,30,31];if(y>=1&&y<=12){return yts[y]}; return 0}function fhntsf(n){if(n%4==0){return 366};return
2021-05-10 23:27:04
236
原创 关于60天合同工期的计算
1<style>#show>button{width:14%}</style><div id='show'></div><script>let creEmt=function(n){return document.createElement(n)} let n=2021,y=3,ksr=18,color='#eee'let ydiv=creEmt('div');ydiv.innerHTML=y;show.append
2021-05-10 02:40:13
234
原创 js降序算法
1let arr=[1,3,8,4,5,5,1,6,7,2]for(let a=0;a<arr.length;a++){if(a<arr.length-1&&arr[a]<arr[a+1]){let b=arr[a];arr[a]=arr[a+1];arr[a+1]=b;for(let c=a;c>0;c--){if(arr[c]>arr[c-1]){let d=arr[c];arr[c]=arr[c-1];arr[c-1]=d}}}}alert(arr)
2021-05-07 23:16:32
176
原创 倚天屠龙记君临天下_战斗系统
1<style>#show{border:1px solid red;width:100%;}#show>div{text-align:center;width:120px;border:1px solid red;}#show>div>.empty{visibility:hidden}#show>div>button{width:40;height:40}</style><div id='show'></div>
2021-05-06 08:17:12
383
原创 js秒表
1<style>button{padding:10;font-size:20px;border:1px solid #aaa}button:active{border:1px solid #888}.btns{text-align:center;}#show{margin-bottom:10px;border:1px solid;text-align:center;font-size:50px}</style><div id='show'>NULL<
2021-05-04 19:25:20
106
原创 socket通信模拟
1<script>var dks=[]let s=socket_create(),c=socket_create();s.bind(80)c.connect(80)function socket_create(){var so={type:null};so.bind=function(dk){so.type='server';dks.push([dk,so])}so.connect=function(dk){so.type='client';let sso=getd
2021-04-30 16:02:34
332
1
原创 日历的尝试
1<div id='show'></div><script>let aw=5,ad=1,nd=31alert( ((aw+(nd-ad))-1)%7+1 )ndjtsf(2020,12,31)function ndjtsf(n,y,t){let zts=0;for(let a=1;a<=y-1;a++){zts+=yuetsf(n,a)}; return zts+t}function yuetsf(y,m){if(m==2){if(y%4==0){re
2021-04-29 20:22:04
120
原创 css聊天气泡的尝试
<style>.box{padding:2;border:1px solid green;position:relative;background:red}.box:after{position:absolute;top:11;left:-8;content:'';width:9px;height:18px;background:red}.box:before{position:absolute;top:10;left:-10;content:'';width:10;height:20;.
2021-04-29 07:48:16
183
原创 关于聊天气泡_转载
<!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title></title> <style> .wrap{ position: relative; width: 300px; height: 80px; marg
2021-04-28 07:46:16
124
原创 关于socket编程
PHPsocket_create()socket_bind()socket_listen()socket_accept()socket_read()socket_write()socket_connect()
2021-04-27 06:59:57
69
原创 计算器的尝试
1<style>*{box-sizing:border-box}#show{padding:10 15;width:270;text-align:right;font-size:40;border:1px solid}#jsq{width:270;border:1px solid}#jsq button{font-size:20;width:25%;height:60}</style><div id='show'>0</div><div
2021-04-26 20:21:26
206
原创 微信界面模拟 二
2重新构造<style>*{box-sizing:border-box}.mapp{width:270;height:400;border:1px solid;}.mapp .ahome .ahwlf{border:1px solid;height:87%}.mapp .ahome .ahbtn{border:1px solid;height:13%}.mapp .ahome .ahbtn button{width:25%;height:100%}.mapp .ahome .ahw
2021-04-25 07:46:13
557
1
原创 微信界面的模拟
1<style>#myapp{position:relative;border:1px solid red;width:270;height:400}.btns{position:absolute;bottom:0px;border:1px solid red;width:100%;height:13%}.btns button{width:25%;height:100%;float:left}.topbtns{border:1px solid red;width:100%;heigh
2021-04-22 20:21:51
462
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人