I would bet my life, like I bet my heart
我以生命与真心担保
That you were the one, baby
你就是我的命中注定
I've never been so sure of anything before
在你之前我从未如此肯定过某件事
You're driving my heart crazy
你让我心驰神往
I can't hold out, I can't hold back now
情难自控,无法回头
Like I've done before
我已陷入其中无法自拔
Darling, look at me
亲爱的,看着我
I've fallen like a fool for you
我为你做尽傻事无可救药
Darling, can't you see
亲爱的,难道你看不见吗
I'd do anything you want me to
我为你赴汤蹈火在所不辞
I tell myself I'm in too deep
多少次我告诉自己别陷得太深
Then I fall a little farther
然而我愈陷愈深
Every time you look at me
只因你每每降临的如水眼眸
How do you do that, girl?
你是怎么做到的
Make me feel like I'm the only man alive for you
让我觉得自己仅为你而生
I guess it what it is that makes me fall like this
我想这大概就是我深爱你的答案——
First time in your arms, I knew
当我第一次沉睡在你的怀抱中,我便知道
The way you held me, it overwhelmed me
你的爱已将我深深淹没
I went out of my mind
让我失去理智

Darling, look at me
亲爱的,看着我
I've fallen like a fool for you
我为你做尽傻事无可救药
Darling, can't you see
亲爱的,难道你看不见吗
I'd do anything you want me to
我为你赴汤蹈火在所不辞
I tell myself I'm getting in too deep
多少次我告诉自己别陷得太深
Then I fall a little farther
然而我愈陷愈深
Every time you look at me
只因你每每降临的如水眼眸
Every time you look at me
只因你每每降临的如水眼眸

随机推荐

  1. 【Luogu】【关卡2-1】简单的模拟(2017年10月)

    任务说明:开始普及组的训练!所谓模拟,就是直接根据题意编写,思维难度简单. 铺地毯 进制转换 多项式输出 机器翻译 排座椅 笨小猴 都是简单模拟题  

  2. JavaScript性能优化之摇树

    作者|Jeremy Wagner译者|薛命灯 现代 Web 应用程序可能会变得非常巨大,特别是它们的 JavaScript 部分.HTTP Archive 网站的数据显示,截至 2018 年中,传输到 ...

  3. linux给用户赋予root权限

    1.到/etc目录下 2.使用 vi sudoers 3.将username添加到sudoers

  4. Confluence 6 站点备份和恢复

    Atlassian 推荐针对生产环境中安装使用的 Confluence 使用原始数据库工具备份策略. 在默认的情况下,Confluence 每天都会备份所有数据和附件到 XML 文件备份中.这些文件被 ...

  5. 【Dart学习】-- Dart之异常处理

    概述: Dart2的异常与Java是非常类似的.Dart2的异常是Exception或者Error(包括它们的子类)的类型,甚至可以是非Exception或者Error类,也可以抛出,但是不建议这么使 ...

  6. 分块——cf1207F

    这么傻逼的题当时想了那么久 用a数组维护原序列,b[i][j]表示 pos%i=j 的 a[pos]之和 对于每个修改1 x y,先直接修改a[x],然后枚举i=1..700,修改b[i][x%i] ...

  7. mui-scroll-wrapper mui-scroll 内容增多不出滚动条

    滚动条需要初始化 mui('.mui-scroll-wrapper').scroll({});

  8. Github代码管理教程

    https://desktop.github.com/ 目录 Create and use a repository Start and manage a new branch Make change ...

  9. Spring 容器初始化方法

    Resource resource = new ClassPathResource("/bean.xml");         resource = new FileSystemR ...

  10. java IO 流小结

    java IO 流小结 java流类图结构 流的分类 按方向 输入流 输出流 按类型 字节流 字符流 结论:只要是处理纯文本数据,就优先考虑使用字符流. 除此之外都使用字节流.