摘要:
yield return promoise next参数 next方法可以带一个参数,该参数就会被当作上一个yield表达式的返回值 next 01_callbackhell let sayhello = function (name, callback) { setTimeout(function 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
摘要:
环境ubuntu: 16.04windows: windows 10 目标让windows可以使用Remote Desktop 客记端远程到ubuntu 16.04 安装事宜windowns无需安装ubuntu16.04需要安装xrdp和xfce4 安装 sudo apt install xrdp 阅读全文
摘要:
tail -f /var/log/xrdp-sesman.logtail -f /var/log/xrdp.logsudo apt install xfce4sudo echo xfce4-session > ~/.xsessionsystemctl restart xrdpxrdp 0.9.17 阅读全文
摘要:
下位三角例子 https://www.zhuji66.com/how-to-connect-ubuntu-use-rdp-on-windows/ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="vi 阅读全文
摘要:
水平垂直居中方法 有两种常用办法: 绝对定位+margin边距(传统方法) 绝对定位+translate位移 flex布局 绝对定位方法 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewpo 阅读全文
摘要:
使用过度属性transition制作进度条 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale= 阅读全文
摘要:
属性选择器input[type]input[type=text]div[class^=icon]div[class$=icon] 结构伪类选择器nth-child(even)=nth-child(2n+0)偶数nth-child(odd)=nth-child(2n+1)奇数nth-child 和 n 阅读全文