├── image ├── nothing └── nav │ ├── nothing │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 1-1.png │ ├── 2-1.png │ ├── 3-1.png │ ├── 4-1.png │ ├── 5-1.png │ ├── 6-1.png │ ├── 7-1.png │ └── 8-1.png ├── js ├── js ├── move-top.js ├── modernizr.custom.min.js ├── responsiveslides.min.js ├── bundle.js ├── easing.js ├── common.js ├── jquery-html5Validate.js ├── jquery.superslide.2.1.1.js ├── jquery.date_input.pack.js ├── jquery.chocolat.js └── swiper.min.css ├── README.md ├── css ├── chocolat.css ├── reset.css ├── flatpickr.min.css ├── style1.css ├── popup-box.css ├── zhaomu.css ├── public.css ├── owl.carousel.css ├── layer.css └── contact.html ├── contact.html ├── proSubmission.html ├── 404.html ├── shareIndex.html ├── about.html ├── quote.html ├── checkServe.html └── trade.html /image/nothing: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/js: -------------------------------------------------------------------------------- 1 | nothing 2 | -------------------------------------------------------------------------------- /image/nav/nothing: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CO-Architecture- 2 | 大创项目CO-Architecture网站前端制作。 3 | -------------------------------------------------------------------------------- /image/nav/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/1.png -------------------------------------------------------------------------------- /image/nav/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/2.png -------------------------------------------------------------------------------- /image/nav/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/3.png -------------------------------------------------------------------------------- /image/nav/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/4.png -------------------------------------------------------------------------------- /image/nav/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/5.png -------------------------------------------------------------------------------- /image/nav/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/6.png -------------------------------------------------------------------------------- /image/nav/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/7.png -------------------------------------------------------------------------------- /image/nav/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/8.png -------------------------------------------------------------------------------- /image/nav/1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/1-1.png -------------------------------------------------------------------------------- /image/nav/2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/2-1.png -------------------------------------------------------------------------------- /image/nav/3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/3-1.png -------------------------------------------------------------------------------- /image/nav/4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/4-1.png -------------------------------------------------------------------------------- /image/nav/5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/5-1.png -------------------------------------------------------------------------------- /image/nav/6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/6-1.png -------------------------------------------------------------------------------- /image/nav/7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/7-1.png -------------------------------------------------------------------------------- /image/nav/8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CheneyWoo/CO-Architecture/master/image/nav/8-1.png -------------------------------------------------------------------------------- /js/move-top.js: -------------------------------------------------------------------------------- 1 | /* UItoTop jQuery Plugin 1.2 | Matt Varone | http://www.mattvarone.com/web-design/uitotop-jquery-plugin */ 2 | (function($){$.fn.UItoTop=function(options){var defaults={text:'To Top',min:200,inDelay:600,outDelay:400,containerID:'toTop',containerHoverID:'toTopHover',scrollSpeed:1000,easingType:'linear'},settings=$.extend(defaults,options),containerIDhash='#'+settings.containerID,containerHoverIDHash='#'+settings.containerHoverID;$('body').append(''+settings.text+'');$(containerIDhash).hide().on('click.UItoTop',function(){$('html, body').animate({scrollTop:0},settings.scrollSpeed,settings.easingType);$('#'+settings.containerHoverID,this).stop().animate({'opacity':0},settings.inDelay,settings.easingType);return false;}).prepend('').hover(function(){$(containerHoverIDHash,this).stop().animate({'opacity':1},600,'linear');},function(){$(containerHoverIDHash,this).stop().animate({'opacity':0},700,'linear');});$(window).scroll(function(){var sd=$(window).scrollTop();if(typeof document.body.style.maxHeight==="undefined"){$(containerIDhash).css({'position':'absolute','top':sd+$(window).height()-50});} 3 | if(sd>settings.min) 4 | $(containerIDhash).fadeIn(settings.inDelay);else 5 | $(containerIDhash).fadeOut(settings.Outdelay);});};})(jQuery); -------------------------------------------------------------------------------- /js/modernizr.custom.min.js: -------------------------------------------------------------------------------- 1 | /* Modernizr 2.0.6 (Custom Build) | MIT & BSD 2 | * Build: http://www.modernizr.com/download/#-touch-teststyles-prefixes 3 | */ 4 | ;window.Modernizr=function(a,b,c){function y(a,b){return!!~(""+a).indexOf(b)}function x(a,b){return typeof a===b}function w(a,b){return v(m.join(a+";")+(b||""))}function v(a){j.cssText=a}var d="2.0.6",e={},f=b.documentElement,g=b.head||b.getElementsByTagName("head")[0],h="modernizr",i=b.createElement(h),j=i.style,k,l=Object.prototype.toString,m=" -webkit- -moz- -o- -ms- -khtml- ".split(" "),n={},o={},p={},q=[],r=function(a,c,d,e){var g,i,j,k=b.createElement("div");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),k.appendChild(j);g=["­",""].join(""),k.id=h,k.innerHTML+=g,f.appendChild(k),i=c(k,a),k.parentNode.removeChild(k);return!!i},s,t={}.hasOwnProperty,u;!x(t,c)&&!x(t.call,c)?u=function(a,b){return t.call(a,b)}:u=function(a,b){return b in a&&x(a.constructor.prototype[b],c)};var z=function(c,d){var f=c.join(""),g=d.length;r(f,function(c,d){var f=b.styleSheets[b.styleSheets.length-1],h=f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"",i=c.childNodes,j={};while(g--)j[i[g].id]=i[g];e.touch="ontouchstart"in a||j.touch.offsetTop===9},g,d)}([,["@media (",m.join("touch-enabled),("),h,")","{#touch{top:9px;position:absolute}}"].join("")],[,"touch"]);n.touch=function(){return e.touch};for(var A in n)u(n,A)&&(s=A.toLowerCase(),e[s]=n[A](),q.push((e[s]?"":"no-")+s));v(""),i=k=null,e._version=d,e._prefixes=m,e.testStyles=r;return e}(this,this.document); -------------------------------------------------------------------------------- /css/chocolat.css: -------------------------------------------------------------------------------- 1 | body{ 2 | margin:0; 3 | padding:0; 4 | } 5 | #Choco_overlay{ 6 | background: #fff; 7 | position: fixed; 8 | top: 0; 9 | left: 0; 10 | z-index: 1000; 11 | width: 100%; 12 | height: 100%; 13 | display:none; 14 | padding:0; 15 | margin:0; 16 | } 17 | #Choco_content{ 18 | display:none; 19 | width:800px; 20 | height:600px; 21 | z-index:1001; 22 | position:fixed; 23 | left:50%; 24 | top:50%; 25 | margin-left:-400px; 26 | margin-top:-300px; 27 | border-top:1px solid transparent;/*Yes, adjust image perfectly at the center of a box, don't know why.*/ 28 | } 29 | #Choco_left_arrow{ 30 | float:left; 31 | background-image:url(../images/left.gif); 32 | background-position:12%; 33 | left:-14%; 34 | } 35 | #Choco_right_arrow{ 36 | float:right; 37 | background-image:url(../images/right.gif); 38 | background-position:88%; 39 | left:14%; 40 | } 41 | .Choco_arrows{ 42 | background-repeat:no-repeat; 43 | display:none; 44 | position:relative; 45 | cursor:pointer; 46 | width:49%; 47 | top:-100%; 48 | height:100%; 49 | margin-top:-30px; 50 | } 51 | #Choco_container_photo{ 52 | text-align:center; 53 | width:800px; 54 | height:600px; 55 | /*background:url(../images/ajax-loader.gif) center center no-repeat;*/ 56 | } 57 | #Choco_container_description{ 58 | padding:0; 59 | height:26px; 60 | width:100%; 61 | color:#505050; 62 | font-family:Tahoma; 63 | clear:both; 64 | position:relative; 65 | font-size:12px; 66 | margin-top:-5px; 67 | overflow:hidden; 68 | visibility:hidden; 69 | } 70 | #Choco_container_title{ 71 | float:left; 72 | padding:5px; 73 | } 74 | #Choco_container_via{ 75 | padding:5px; 76 | float:right; 77 | } 78 | #Choco_container_via a{ 79 | color:gray; 80 | } 81 | #Choco_container_via a:hover{ 82 | color:white; 83 | background:gray; 84 | } 85 | #Choco_close{ 86 | width:30px; 87 | height:25px; 88 | background-image:url(../images/close.gif); 89 | background-repeat:no-repeat; 90 | z-index:1002; 91 | cursor:pointer; 92 | margin-top:-20px; 93 | display:none; 94 | } 95 | #Choco_loading{ 96 | width:9px; 97 | height:11px; 98 | background-image:url(../images/loading.gif); 99 | background-repeat:no-repeat; 100 | z-index:1002; 101 | cursor:pointer; 102 | float:right; 103 | margin-top:-20px; 104 | display:none; 105 | } 106 | #Choco_bigImage{ 107 | display:none; 108 | position:relative; 109 | width:100%; 110 | height:100%; 111 | margin-top:-5px; 112 | } 113 | -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /************************************* 3 | *样式主文件 4 | *@ShenYang 5 | *604311189 6 | *2016-01-30 7 | *************************************/ 8 | /* CSS Document */ 9 | html, body, div, span, object, iframe, 10 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 11 | abbr, address, cite, code, 12 | del, dfn, em, img, ins, kbd, q, samp, 13 | small, strong, sub, sup, var, 14 | b, i, 15 | dl, dt, dd, ol, ul, li, 16 | fieldset, form, label, legend, 17 | table, caption, tbody, tfoot, thead, tr, th, td, 18 | article, aside, canvas, details, figcaption, figure, 19 | footer, header, hgroup, menu, nav, section, summary, 20 | time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } 21 | 22 | html,body { width:100%;} 23 | 24 | body { line-height: 1; } 25 | 26 | article, aside, address, details, dialog, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } 27 | 28 | nav ul { list-style: none; } 29 | 30 | blockquote, q { quotes: none; } 31 | 32 | blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } 33 | 34 | a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; } 35 | 36 | /* change colours to suit your needs */ 37 | ins { background-color: #ff9; color: #000; text-decoration: none; } 38 | 39 | /* change colours to suit your needs */ 40 | mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; } 41 | del { text-decoration: line-through; } 42 | abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; } 43 | table { border-collapse: collapse; border-spacing: 0; } 44 | 45 | /* change border colour to suit your needs */ 46 | hr { display: block; height: 1px; border: 0; border-top: 1px solid #cccccc; margin: 1em 0; padding: 0; } 47 | input, select { vertical-align: middle; } 48 | 49 | caption, th { text-align: left; font-weight: normal; } 50 | html, body, fieldset, img, iframe, abbr { border: 0; } 51 | i, cite, em, var, address, dfn { font-style: normal; } 52 | [hidefocus], summary { outline: 0; } 53 | li { list-style: none; } 54 | h1, h2, h3, h4, h5, h6, small { font-size: 100%; } 55 | sup, sub { font-size: 83%; } 56 | pre, code, kbd, samp { font-family: inherit; } 57 | q:before, q:after { content: none; } 58 | textarea { overflow: auto; resize: none; } 59 | label, summary { cursor: default; } 60 | a, button { cursor: pointer; } 61 | h1, h2, h3, h4, h5, h6, em, strong, b { font-weight: bold; } 62 | del, ins,s, a, a:hover { text-decoration: none; } 63 | body, textarea, input, button, select, keygen, legend {color: #000; outline: 0; } 64 | body { background: #fff; } 65 | /*a, a:hover { color: #000; }*/ 66 | -------------------------------------------------------------------------------- /js/responsiveslides.min.js: -------------------------------------------------------------------------------- 1 | /*! http://responsiveslides.com v1.54 by @viljamis */ 2 | (function(c,I,B){c.fn.responsiveSlides=function(l){var a=c.extend({auto:!0,speed:500,timeout:4E3,pager:!1,nav:!1,random:!1,pause:!1,pauseControls:!0,prevText:"Previous",nextText:"Next",maxwidth:"",navContainer:"",manualControls:"",namespace:"rslides",before:c.noop,after:c.noop},l);return this.each(function(){B++;var f=c(this),s,r,t,m,p,q,n=0,e=f.children(),C=e.size(),h=parseFloat(a.speed),D=parseFloat(a.timeout),u=parseFloat(a.maxwidth),g=a.namespace,d=g+B,E=g+"_nav "+d+"_nav",v=g+"_here",j=d+"_on", 3 | w=d+"_s",k=c("