2.29 Rating by CuteStat

It is a domain having top extension. This website is estimated worth of $ 8.95 and have a daily income of around $ 0.15. As no active threats were reported recently by users, shiye.top is SAFE to browse.

PageSpeed Score
38
Siteadvisor Rating
Not Applicable

Traffic Report

Daily Unique Visitors: Not Applicable
Daily Pageviews: Not Applicable

Estimated Valuation

Income Per Day: $ 0.15
Estimated Worth: $ 8.95

Search Engine Indexes

Google Indexed Pages: Not Applicable
Bing Indexed Pages: Not Applicable

Search Engine Backlinks

Google Backlinks: Not Applicable
Bing Backlinks: Not Applicable

Safety Information

Google Safe Browsing: No Risk Issues
Siteadvisor Rating: Not Applicable
WOT Trustworthiness: Not Applicable
WOT Child Safety: Not Applicable

Website Ranks & Scores

Alexa Rank: Not Applicable
Domain Authority: Not Applicable

Web Server Information

Hosted IP Address:

112.124.36.78

Hosted Country:

China CN

Location Latitude:

30.294

Location Longitude:

120.1619
$(function () { //关于页面Html的封装 HtmlClose(); //导航栏的配置 navPannel(); //设为首页和添加收藏 SetHomePageAndAdd(); //设置cookie globalCookie(); //设置默认值 ConfigDefaultValue(); //IE 6 BUG select z-index $(".navBox>div").bgiframe({ cssSet: { 'border-bottom': '2px #9E1502 solid', 'border-right': '2px #9E1502 solid', 'border-left': '2px #9E1502 solid' } }); //设置登录状态和按钮 HeadInfo(); //自动获取url的pathname SetMapPath(window.location.pathname); //列表样式 ListStyle(); Userbar(); function ListStyle() { $(".selectlist a").live("click", function () { $(this).closest(".selectlist").find("a").removeClass("selected"); $(this).addClass("selected"); return false; }); $(".selectlist a").hover(function () { $(this).addClass("hover"); }, function () { $(this).removeClass("hover"); }); } function HeadInfo() { //购物车产品数量 var count = 0; var flag = 1; if ($.cookie("productList" + flag) != undefined && $.cookie("productList" + flag) != "") { var productList = $.cookie("productList" + flag); count = productList.split('&').length - 1; var nextFalg = flag + 1; while ($.cookie("productList" + nextFalg) != undefined && $.cookie("productList" + nextFalg) != "") { count = count + FrontNextCartCount(nextFalg); nextFalg++; } $("#cartcount").text(count); } //注销登陆 $("#loginOut").click(function () { if (!confirm("是否确定要注销登录?")) { return false; } $.post("/Index/LoginOut", function (content) { window.location.replace(content.data); }); }); ////判断是否已经登录 var loginName = ""; if (loginName != null && loginName != "") { $("#loginIn").hide(); $("#logined").show(); $("#loginUser").text(loginName); } else { $("#loginIn").show(); $("#logined").hide(); } } function FrontNextCartCount(flag) { if ($.cookie("productList" + flag) != undefined && $.cookie("productList" + flag) != "") { var productList = $.cookie("productList" + flag); return productList.split('&').length - 1; } else { return 0; } } function ConfigDefaultValue() { if ($("[defaultValue]").val() == "") { $("[defaultValue]").each(function () { $(this).val($(this).attr("defaultValue")); }); } $("[defaultValue]").live("blur", function () { if ($.trim($(this).val()) == "") { $(this).val($(this).attr("defaultValue")); $(this).css("color", "#999"); } }).live('focus', function () { if ($(this).attr("defaultValue").replace("\r\n", "").replace("\n", "").replace("\r", "").length == $(this).val().replace("\r\n", "").replace("\n", "").replace("\r", "").length) { $(this).val(""); } $(this).css("color", "#000"); }); } function navPannel() { // $(".header-nav ul li a[href='/Index/ManagementCenter']").click(function () { // var url = "/ManagementCenter/DomainManage"; // $.cookie("menuSelected", url, { expires: 5, path: '/' }); // }); //var navSelectedUrl = $.cookie("menuSelected"); //if (navSelectedUrl == undefined || navSelectedUrl == "") { // $(".header-nav li a:first").addClass("nav-action").siblings().removeClass("nav-action"); //} else { // var $active = $(".header-nav li a[href='" + navSelectedUrl + "']").parent(); // $active.addClass("nav-action").siblings().removeClass("nav-action"); //} var $active = $(".header-nav li a[href='" + window.location.pathname + "']").parent(); $active.addClass("nav-action").siblings().removeClass("nav-action"); $(".header-nav ul li a").click(function () { var url = $(this).attr("href"); $.cookie("menuSelected", url, { expires: 5, path: '/' }); }); //导航栏hover效果 $(".header-nav li").hover(function () { var $this = $(this); var index = $(".header-nav li[class*='nav-action']").index(); $(".header-nav ul").attr("index", index); //$this.addClass("nav-action").siblings().removeClass("nav-action");//不同的效果 $this.addClass("nav-action"); var hoverIndex = $this.index(); $(".header-nav div.navBox").eq(hoverIndex).removeClass("hide").siblings().addClass("hide"); }, function (e) { var $this = $(this); var index = $(".header-nav ul").attr("index"); if (!$(e.relatedTarget).closest(".navBox")[0]) { $this.removeClass("nav-action"); if (index > -1) { $(".header-nav li").eq(index).addClass("nav-action"); } var hoverIndex = $this.index(); $(".header-nav div.navBox").eq(hoverIndex).addClass("hide"); } else { $(e.relatedTarget).closest(".navBox").mouseout(function (e) { if (!$(e.relatedTarget).closest(".navBox")[0]) { $this.removeClass("nav-action"); if (index > -1) { $(".header-nav li").eq(index).addClass("nav-action"); } $(".header-nav div.navBox").eq($this.index()).addClass("hide"); } }); } }); } function globalCookie() { if (!$.cookie("menberMenuList") && $.cookie("menberMenuList") != "") { //判断是否存在该cookie var menberMenuList = new Array(); $.cookie("menberMenuList", menberMenuList, { expires: 5, path: '/' }); } if (!$.cookie("menuSelected") && $.cookie("menuSelected") != "") { //判断是否存在该cookie var menuSelecte = ""; $.cookie("menuSelected", menuSelecte, { expires: 5, path: '/' }); } } function SetHomePageAndAdd() { $("#favorite").click(function () { addFavorite(); }); $("#homepage").click(function () { setHomepage(); }); function addFavorite() {//加入收藏夹 if (document.all) { window.external.addFavorite('http://www.4y.cn', '新视野网络'); } else if (window.sidebar) { window.sidebar.addPanel('新视野网络', 'http://www.4y.cn', ""); } } function setHomepage() {//设置首页 if (document.all) { document.body.style.behavior = 'url(#default#homepage)'; document.body.setHomePage('http://www.4y.cn'); } else if (window.sidebar) { if (window.netscape) { try { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); } catch (e) { alert("您的浏览器未启用[设为首页]功能,开启方法:先在地址栏内输入about:config,然后将项 signed.applets.codebase_principal_support 值该为true即可"); } } var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch); prefs.setCharPref('browser.startup.homepage', 'http://www.4y.cn'); } } } function HtmlClose() { //-------对“verticalGrayTab”灰色tab的封装---------// var $div_li_gray = $(".verticalGrayTab > .tab_menu > .tab_menu_right > ul > li"); $div_li_gray.live("click", function () { //动态绑定 $(this).addClass("tabSelected") .siblings().removeClass("tabSelected"); var index = $(this).index(); $(".verticalGrayTab > .tab_box > div") .eq(index).show() .siblings().hide(); }); //-------对“verticalBlueTab”蓝色tab的封装---------// var $div_li_blue = $(".verticalBlueTab > ul > li"); $div_li_blue.live("click", function () { //动态绑定 $(this).addClass("tabSelected") .siblings().removeClass("tabSelected"); var index = $(this).index(); $(".verticalBlueTab > .tab_box > div") .eq(index).show() .siblings().hide(); }); //-------对“verticalGreyTitleTab”灰色tab的封装---------// var $div_li_GreyTitleTab = $(".verticalGreyTitleTab > .tab_menu > .tab_menu_right > ul > li"); $div_li_GreyTitleTab.live("click", function () { //动态绑定 $(this).addClass("tabSelected") .siblings().removeClass("tabSelected"); var index = $(this).index(); $(".verticalGreyTitleTab > .tab_box > div") .eq(index).show() .siblings().hide(); }); } }); //面包屑导航 function SetMapPath(url) { var jsonObj = new Object(); jsonObj.url = url; var jsonData = JSON.stringify(jsonObj); $.ajax({ type: "post", url: "/Index/GetMapPath", data: jsonData, dataType: "json", contentType: "application/json; charset=utf-8", success: function (context) { if (context.Result == "OK") { $("#map-center > div").html(context.Data); } } }); } function Userbar() { if ($("#balance").length > 0) { $("#userLevel").text(''); var balance = ""; $("#balance").text(" " + "0.00" + " "); $(".balance").text(" " + "0.00" + " "); } } //点击导航,切换当前页面的文字描述 function ChoosePage(pageDesc) { $("#pageDesc").text(pageDesc); } function gzmousemove() { #container1 { position: absolute; top: 37px; left: 205px; display: block; height: 140px; width: 135px; background-color: transparent; *border: 1px solid #666; z-index:100000; } #s { position: absolute; top: -19px; *top: -22px; left: 59px; display: block; height: 0; width: 0; font-size: 0; line-height: 0; border-color: transparent transparent #666 transparent; border-style: dashed dashed solid dashed; border-width: 10px; } #i { position: absolute; top: -9px; *top: -9px; left: -10px; display: block; height: 0; width: 0; font-size: 0; line-height: 0; border-color: transparent transparent #fff transparent; border-style: dashed dashed solid dashed; border-width: 10px; } #content1 { border: 1px solid #666; -moz-border-radius: 3px; -webkit-border-radius: 3px; position: absolute; background-color: #fff; width: 100%; height: 100%; *top: -2px; *border-top: 1px solid #666; *border-top: 1px solid #666; *border-left: none; *border-right: none; *height: 102px; /*box-shadow: 3px 3px 4px #999;*/ /*-moz-box-shadow: 3px 3px 4px #999; -webkit-box-shadow: 3px 3px 4px #999;*/ /* For IE 5.5 - 7 */ filter: progid:DXImageTransform.Microsoft.S

Page Resources Breakdown

Homepage Links Analysis

Website Inpage Analysis

H1 Headings: Not Applicable H2 Headings: Not Applicable
H3 Headings: Not Applicable H4 Headings: Not Applicable
H5 Headings: Not Applicable H6 Headings: Not Applicable
Total IFRAMEs: Not Applicable Total Images: 7
Google Adsense: Not Applicable Google Analytics: Not Applicable

HTTP Header Analysis

HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/7.5
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Sat, 27 Jan 2018 02:30:46 GMT
Content-Length: 101996
X-Cache: MISS from proxy-node-010
X-Cache-Lookup: MISS from proxy-node-010:4896
Via: 1.1 proxy-node-010 (squid/3.5.12)
Connection: keep-alive

Domain Nameserver Information

Host IP Address Country
f1g1ns1.dnspod.net 125.94.59.210 China China
f1g1ns2.dnspod.net 1.12.0.1 China China

Full WHOIS Lookup

Domain Name: shiye.top
Registry Domain ID: D20150422G10001G_35669963-top
Registrar WHOIS Server: Whois.55hl.com
Registrar URL: www.55hl.com
Updated Date: 2018-01-25T12:26:54Z
Creation Date: 2015-04-22T05:14:13Z
Registry Expiry Date: 2018-04-22T05:14:13Z
Registrar: Jiangsu bangning science technology Co
Registrar IANA ID: 1469
Registrar Abuse Contact Email: abuse@55hl.com
Registrar Abuse Contact Phone: +86.2586883426x1009
Domain Status: ok https://icann.org/epp#OK
Registry Registrant ID: C20180125C_25461082-top
Registrant Name: LiYu Shan
Registrant Organization: 台山市新视野网络有限公司
Registrant Street: Huan Shi Dong Lu Ming Zhu Yuan 9Hao
Registrant City: Tai Shan
Registrant State/Province: Guang Dong
Registrant Postal Code: 529200
Registrant Country: CN
Registrant Phone: +86.07505960398
Registrant Phone Ext:
Registrant Fax: +86.07505960398
Registrant Fax Ext:
Registrant Email: shiye365@qq.com
Registry Admin ID: C20180125C_25461082-top
Admin Name: LiYu Shan
Admin Organization: 台山市新视野网络有限公司
Admin Street: Huan Shi Dong Lu Ming Zhu Yuan 9Hao
Admin City: Tai Shan
Admin State/Province: Guang Dong
Admin Postal Code: 529200
Admin Country: CN
Admin Phone: +86.07505960398
Admin Phone Ext:
Admin Fax: +86.07505960398
Admin Fax Ext:
Admin Email: shiye365@qq.com
Registry Tech ID: C20180125C_25461082-top
Tech Name: LiYu Shan
Tech Organization: 台山市新视野网络有限公司
Tech Street: Huan Shi Dong Lu Ming Zhu Yuan 9Hao
Tech City: Tai Shan
Tech State/Province: Guang Dong
Tech Postal Code: 529200
Tech Country: CN
Tech Phone: +86.07505960398
Tech Phone Ext:
Tech Fax: +86.07505960398
Tech Fax Ext:
Tech Email: shiye365@qq.com
Name Server: f1g1ns1.dnspod.net
Name Server: f1g1ns2.dnspod.net
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2018-01-27T02:29:44Z