• EnglishPod-6

    EnglishPod-6

    Road Trip 播放音频 A: So, are we all ready to go? B: Yup, I think so. The car’s packed; we have munchies and music, and the map’s in the car. A: Did you get the camera? B: Got it...
  • EnglishPod-5

    EnglishPod-5

    Cut In Line 播放音频 A: I can’t believe it took us two hours to get here. The traffic in New York is unbelievable. B: Yeah, but just relax honey, we’re here and we’re going on vacation. In a...
  • EnglishPod-4

    EnglishPod-4

    I need an assistant! 播放音频 A: …like I told you before, we just don’t have the resources to hire you an assistant. B: I understand that, but the fact is we’re understaffed. A: The ti...
  • EnglishPod-3

    EnglishPod-3

    Hotel upgrade 播放音频 A: Good afternoon. What can I do for you? B: I’d like to check in please. I have a reservation under the name Anthony Roberts. A: All right R.O.B.E.R.T.S… Oh, Mr...
  • EnglishPod-2

    EnglishPod-2

    Calling In Sick 播放音频 A: Hello, Daniel speaking, how may I help you? B: Hi, Daniel, Julie here. A: Hi, Julie, how are you? B: Actually, I’m feeling quite ill today. A: ...
  • EnglishPod-1

    EnglishPod-1

    Difficult customer 播放音频 A: Good evening. My name is Fabio. I’ll be your waiter for tonight. May I take your order? B: No, I’m still working on it. This menu isn’t even in English. What’s...
  • JS中常见数组的处理方法

    JS中常见数组的处理方法

    #JS中常见数组的处理 基础操作方法push()末尾添加数据作用: 就是往数组末尾添加数据 返回值: 就是这个数组的长度 123let colors = []; // 创建一个数组let count = colors.push("red", "green");console.log(count) // 2 ###unshift()/shif...
  • css实现居中的总结

    css实现居中的总结

    CSS实现居中的总结 居中:下文所说的居中皆为盒子在其包含块中居中 包含块:一个元素的尺寸和位置经常受其包含块(containing block)的影响。大多数情况下,包含块就是这个元素最近的祖先块元素的内容区域 包含块的基本规则1.根元素(html)的包含块:称之为初始包含块,通常与视口大小相同。 2.其他元素的包含块: 如果元素的position是static、relative或...
  • 事件循环

    事件循环

    事件循环浏览器的进程模型何为进程?程序运行需要有它自己专属的内存空间,可以把这块内存空间简单的理解为进程 每个应用至少有一个进程,进程之间相互独立,即使要通信,也需要双方同意。 何为线程?有了进程后,就可以运行程序的代码了。 运行代码的「人」称之为「线程」。 一个进程至少有一个线程,所以在进程开启后会自动创建一个线程来运行代码,该线程称之为主线程。 如果程序需要同时执行多块代码,主线程就...
  • Vue Router的基本用法

    Vue Router的基本用法

    Vue Router的基本用法一、安装使用步骤对于一个现有的使用 JavaScript 包管理器的项目,你可以从 npm registry 中安装 Vue Router: 1npm install vue-router@4 新建文件src/router/index.js 12345678910111213141516171819202122import { c...
12