【Web前端问题】关于2015愚人节google网页和URL反转实现方法

如题求方法,虽说chorme是自家的,想怎么玩就怎么玩,可是IE上也能正常解析https://com.google/,为何?
图片描述

图片描述

图片描述

回答:

  1. .google 域名合法。其实 com.google 只是指向了 https://www.google.com/?igu=2

  2. 页面上的技术实现也很简单,利用 css 对整个页面做了一下翻转:

cssbody{

-moz-transform: scaleX(-1);

-o-transform: scaleX(-1);

-webkit-transform: scaleX(-1);

transform: scaleX(-1);

}

回答:

刚才在群里问了下,这是页面反转的方法,有木有大神晓得URL反转还能正常解析的原因

html{filter:fliph}/fliph(水平翻转滤镜),还有flipv垂直翻转滤镜/

body{-webkit-transform: rotateY(180deg);

transform: rotateY(180deg);

-moz-transform: skew(0deg, 180deg) scale(-1, 1);

-o-transform: skew(0deg, 180deg) scale(-1, 1);}

回答:

com.google是正常的域名, 当然可以解析~

com.google.     300 IN  A   216.58.221.78

回答:

这是新的通用顶级域名 .google 合法的~

回答:

这是IANA上对.google这个gTLD的信息
http://www.iana.org/domains/root/db/google.html

Delegation Record for .GOOGLE

(Generic top-level domain)

Sponsoring Organisation

Charleston Road Registry Inc.

1600 Amphitheatre Parkway

Mountain View, CA 94043

United States

Administrative Contact

TLD Manager

Google Inc.

1600 Amphitheatre Parkway

Mountain View, CA 94043

United States

Email: iana-contact@google.com

Voice: 1 650 253 4522

Fax: 1 650 492 5631

Technical Contact

Seth Goldman

Google Inc.

76 9th Avenue, 4th Floor

New York, NY 10011

United States

Email: crr-tech@google.com

Voice: 1 650 253 2181

Fax: 1 212 565 0001

以上是 【Web前端问题】关于2015愚人节google网页和URL反转实现方法 的全部内容, 来源链接: utcz.com/a/143536.html

回到顶部