| @ -0,0 +1,23 @@ | |||
| .body { | |||
| padding-top: 54px; | |||
| } | |||
| @media (min-width: 992px) { | |||
| body { | |||
| padding-top: 56px; | |||
| } | |||
| } | |||
| .business-header { | |||
| height: 50vh; | |||
| min-height: 300px; | |||
| background: url('../img/banner.png') center center no-repeat scroll; | |||
| -webkit-background-size: cover; | |||
| -moz-background-size: cover; | |||
| background-size: cover; | |||
| -o-background-size: cover; | |||
| } | |||
| .card { | |||
| height: 100%; | |||
| } | |||
| @ -0,0 +1,331 @@ | |||
| /*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */ | |||
| /* | |||
| * What follows is the result of much research on cross-browser styling. | |||
| * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal, | |||
| * Kroc Camen, and the H5BP dev community and team. | |||
| */ | |||
| /* ========================================================================== | |||
| Base styles: opinionated defaults | |||
| ========================================================================== */ | |||
| html { | |||
| color: #222; | |||
| font-size: 1em; | |||
| line-height: 1.4; | |||
| } | |||
| /* | |||
| * Remove text-shadow in selection highlight: | |||
| * https://twitter.com/miketaylr/status/12228805301 | |||
| * | |||
| * Vendor-prefixed and regular ::selection selectors cannot be combined: | |||
| * https://stackoverflow.com/a/16982510/7133471 | |||
| * | |||
| * Customize the background color to match your design. | |||
| */ | |||
| ::-moz-selection { | |||
| background: #b3d4fc; | |||
| text-shadow: none; | |||
| } | |||
| ::selection { | |||
| background: #b3d4fc; | |||
| text-shadow: none; | |||
| } | |||
| /* | |||
| * A better looking default horizontal rule | |||
| */ | |||
| hr { | |||
| display: block; | |||
| height: 1px; | |||
| border: 0; | |||
| border-top: 1px solid #ccc; | |||
| margin: 1em 0; | |||
| padding: 0; | |||
| } | |||
| /* | |||
| * Remove the gap between audio, canvas, iframes, | |||
| * images, videos and the bottom of their containers: | |||
| * https://github.com/h5bp/html5-boilerplate/issues/440 | |||
| */ | |||
| audio, | |||
| canvas, | |||
| iframe, | |||
| img, | |||
| svg, | |||
| video { | |||
| vertical-align: middle; | |||
| } | |||
| /* | |||
| * Remove default fieldset styles. | |||
| */ | |||
| fieldset { | |||
| border: 0; | |||
| margin: 0; | |||
| padding: 0; | |||
| } | |||
| /* | |||
| * Allow only vertical resizing of textareas. | |||
| */ | |||
| textarea { | |||
| resize: vertical; | |||
| } | |||
| /* ========================================================================== | |||
| Browser Upgrade Prompt | |||
| ========================================================================== */ | |||
| .browserupgrade { | |||
| margin: 0.2em 0; | |||
| background: #ccc; | |||
| color: #000; | |||
| padding: 0.2em 0; | |||
| } | |||
| /* ========================================================================== | |||
| Author's custom styles | |||
| ========================================================================== */ | |||
| /* ========================================================================== | |||
| Helper classes | |||
| ========================================================================== */ | |||
| /* | |||
| * Hide visually and from screen readers | |||
| */ | |||
| .hidden { | |||
| display: none !important; | |||
| } | |||
| /* | |||
| * Hide only visually, but have it available for screen readers: | |||
| * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility | |||
| * | |||
| * 1. For long content, line feeds are not interpreted as spaces and small width | |||
| * causes content to wrap 1 word per line: | |||
| * https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe | |||
| */ | |||
| .visuallyhidden { | |||
| border: 0; | |||
| clip: rect(0 0 0 0); | |||
| -webkit-clip-path: inset(50%); | |||
| clip-path: inset(50%); | |||
| height: 1px; | |||
| margin: -1px; | |||
| overflow: hidden; | |||
| padding: 0; | |||
| position: absolute; | |||
| width: 1px; | |||
| white-space: nowrap; /* 1 */ | |||
| } | |||
| /* | |||
| * Extends the .visuallyhidden class to allow the element | |||
| * to be focusable when navigated to via the keyboard: | |||
| * https://www.drupal.org/node/897638 | |||
| */ | |||
| .visuallyhidden.focusable:active, | |||
| .visuallyhidden.focusable:focus { | |||
| clip: auto; | |||
| -webkit-clip-path: none; | |||
| clip-path: none; | |||
| height: auto; | |||
| margin: 0; | |||
| overflow: visible; | |||
| position: static; | |||
| width: auto; | |||
| white-space: inherit; | |||
| } | |||
| /* | |||
| * Hide visually and from screen readers, but maintain layout | |||
| */ | |||
| .invisible { | |||
| visibility: hidden; | |||
| } | |||
| /* | |||
| * Clearfix: contain floats | |||
| * | |||
| * For modern browsers | |||
| * 1. The space content is one way to avoid an Opera bug when the | |||
| * `contenteditable` attribute is included anywhere else in the document. | |||
| * Otherwise it causes space to appear at the top and bottom of elements | |||
| * that receive the `clearfix` class. | |||
| * 2. The use of `table` rather than `block` is only necessary if using | |||
| * `:before` to contain the top-margins of child elements. | |||
| */ | |||
| .clearfix:before, | |||
| .clearfix:after { | |||
| content: " "; /* 1 */ | |||
| display: table; /* 2 */ | |||
| } | |||
| .clearfix:after { | |||
| clear: both; | |||
| } | |||
| /* ========================================================================== | |||
| EXAMPLE Media Queries for Responsive Design. | |||
| These examples override the primary ('mobile first') styles. | |||
| Modify as content requires. | |||
| ========================================================================== */ | |||
| @media only screen and (min-width: 35em) { | |||
| /* Style adjustments for viewports that meet the condition */ | |||
| } | |||
| @media print, | |||
| (-webkit-min-device-pixel-ratio: 1.25), | |||
| (min-resolution: 1.25dppx), | |||
| (min-resolution: 120dpi) { | |||
| /* Style adjustments for high resolution devices */ | |||
| } | |||
| /* ========================================================================== | |||
| Print styles. | |||
| Inlined to avoid the additional HTTP request: | |||
| http://www.phpied.com/delay-loading-your-print-css/ | |||
| ========================================================================== */ | |||
| @media print { | |||
| *, | |||
| *:before, | |||
| *:after { | |||
| background: transparent !important; | |||
| color: #000 !important; /* Black prints faster: | |||
| http://www.sanbeiji.com/archives/953 */ | |||
| box-shadow: none !important; | |||
| text-shadow: none !important; | |||
| } | |||
| a, | |||
| a:visited { | |||
| text-decoration: underline; | |||
| } | |||
| a[href]:after { | |||
| content: " (" attr(href) ")"; | |||
| } | |||
| abbr[title]:after { | |||
| content: " (" attr(title) ")"; | |||
| } | |||
| /* | |||
| * Don't show links that are fragment identifiers, | |||
| * or use the `javascript:` pseudo protocol | |||
| */ | |||
| a[href^="#"]:after, | |||
| a[href^="javascript:"]:after { | |||
| content: ""; | |||
| } | |||
| pre { | |||
| white-space: pre-wrap !important; | |||
| } | |||
| pre, | |||
| blockquote { | |||
| border: 1px solid #999; | |||
| page-break-inside: avoid; | |||
| } | |||
| /* | |||
| * Printing Tables: | |||
| * http://css-discuss.incutio.com/wiki/Printing_Tables | |||
| */ | |||
| thead { | |||
| display: table-header-group; | |||
| } | |||
| tr, | |||
| img { | |||
| page-break-inside: avoid; | |||
| } | |||
| p, | |||
| h2, | |||
| h3 { | |||
| orphans: 3; | |||
| widows: 3; | |||
| } | |||
| h2, | |||
| h3 { | |||
| page-break-after: avoid; | |||
| } | |||
| } | |||
| /* jssor slider loading skin spin css */ | |||
| .jssorl-009-spin img { | |||
| animation-name: jssorl-009-spin; | |||
| animation-duration: 1.6s; | |||
| animation-iteration-count: infinite; | |||
| animation-timing-function: linear; | |||
| } | |||
| @keyframes jssorl-009-spin { | |||
| from { | |||
| transform: rotate(0deg); | |||
| } | |||
| to { | |||
| transform: rotate(360deg); | |||
| } | |||
| } | |||
| .jssora106 {display:block;position:absolute;cursor:pointer;} | |||
| .jssora106 .c {fill:#fff;opacity:.3;} | |||
| .jssora106 .a {fill:none;stroke:#000;stroke-width:350;stroke-miterlimit:10;} | |||
| .jssora106:hover .c {opacity:.5;} | |||
| .jssora106:hover .a {opacity:.8;} | |||
| .jssora106.jssora106dn .c {opacity:.2;} | |||
| .jssora106.jssora106dn .a {opacity:1;} | |||
| .jssora106.jssora106ds {opacity:.3;pointer-events:none;} | |||
| .jssort101 .p {position: absolute;top:0;left:0;box-sizing:border-box;background:#000;} | |||
| .jssort101 .p .cv {position:relative;top:0;left:0;width:100%;height:100%;border:2px solid #000;box-sizing:border-box;z-index:1;} | |||
| .jssort101 .a {fill:none;stroke:#fff;stroke-width:400;stroke-miterlimit:10;visibility:hidden;} | |||
| .jssort101 .p:hover .cv, .jssort101 .p.pdn .cv {border:none;border-color:transparent;} | |||
| .jssort101 .p:hover{padding:2px;} | |||
| .jssort101 .p:hover .cv {background-color:rgba(0,0,0,6);opacity:.35;} | |||
| .jssort101 .p:hover.pdn{padding:0;} | |||
| .jssort101 .p:hover.pdn .cv {border:2px solid #fff;background:none;opacity:.35;} | |||
| .jssort101 .pav .cv {border-color:#fff;opacity:.35;} | |||
| .jssort101 .pav .a, .jssort101 .p:hover .a {visibility:visible;} | |||
| .jssort101 .t {position:absolute;top:0;left:0;width:100%;height:100%;border:none;opacity:.6;} | |||
| .jssort101 .pav .t, .jssort101 .p:hover .t{opacity:1;} | |||
| @ -1 +1,204 @@ | |||
| <!DOCTYPE html> | |||
| <html class="no-js" lang="en"> | |||
| <head> | |||
| <title>Tiger OS</title> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="x-ua-compatible" content="ie=edge"> | |||
| <meta name="description" content=""> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |||
| <link rel="apple-touch-icon" href="icon.png"> | |||
| <link rel="stylesheet" href="css/main.css"> | |||
| <!-- Bootstrap core CSS --> | |||
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous"> | |||
| <link href="css/business-frontpage.css" rel="stylesheet"> | |||
| <script src="js/vendor/modernizr-3.5.0.min.js"></script> | |||
| </head> | |||
| <body> | |||
| <!-- Navigation --> | |||
| <nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top"> | |||
| <div class="container"> | |||
| <a class="navbar-brand" href="#">TigerOS</a> | |||
| <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> | |||
| <span class="navbar-toggler-icon"></span> | |||
| </button> | |||
| <div class="collapse navbar-collapse" id="navbarResponsive"> | |||
| <ul class="navbar-nav ml-auto"> | |||
| <li class="nav-item active"> | |||
| <a class="nav-link" href="#">Home | |||
| <span class="sr-only">(current)</span> | |||
| </a> | |||
| </li> | |||
| <li class="nav-item"> | |||
| <a class="nav-link" href="https://tigeros.ritlug.com/">Downloads</a> | |||
| </li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| </nav> | |||
| <!-- Header with Background Image --> | |||
| <header class="business-header"> | |||
| <a href="https://github.com/RITlug/TigerOS/"><img style="position: absolute; top: 400; left: 0; border: 0;" src="https://camo.githubusercontent.com/c6625ac1f3ee0a12250227cf83ce904423abf351/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f677261795f3664366436642e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_gray_6d6d6d.png"></a> | |||
| <div class="container"> | |||
| <div class="row"> | |||
| <div class="col-lg-12"> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| </header> | |||
| <!-- Page Content --> | |||
| <div class="container"> | |||
| <div class="row"> | |||
| <div class="col-sm-8"> | |||
| <h2 class="mt-4">What is TigerOS?</h2> | |||
| <p>TigerOS is a Fedora Remix that beautifully utilizes linux to meet the demands of RIT students and faculty.</p> | |||
| <p>TigerOS is maintained and developed by the Rochester Intitute of Technology's <a href="http://ritlug.com/">Linux User Group</a></p> | |||
| <p> | |||
| <a class="btn btn-primary btn-lg" href="#">Learn more »</a> | |||
| </p> | |||
| </div> | |||
| <div class="col-sm-4"> | |||
| <h2 class="mt-4">Download TigerOS</h2> | |||
| <p>A fast and free alternative to macOS and Windows.</p> | |||
| <p> | |||
| <a class="btn btn-primary btn-lg" href="https://tigeros.ritlug.com/">Download »</a> | |||
| </p> | |||
| </div> | |||
| </div> | |||
| <!-- /.row --> | |||
| <!-- image slider --> | |||
| <div class="row"> | |||
| <div class="col-sm-8"> | |||
| <h2 class="mt-4">Screenshots</h2> | |||
| </div> | |||
| <div id="jssor_1" style="position:relative;margin:0 auto;top:0px;left:0px;width:980px;height:660px;overflow:hidden;visibility:hidden;"> | |||
| <!-- Loading Screen --> | |||
| <div data-u="loading" class="jssorl-009-spin" style="position:absolute;top:0px;left:0px;width:100%;height:100%;text-align:center;background-color:rgba(0,0,0,0.7);"> | |||
| <img style="margin-top:-19px;position:relative;top:50%;width:38px;height:38px;" src="img/spin.svg" /> | |||
| </div> | |||
| <div data-u="slides" style="cursor:default;position:relative;top:0px;left:0px;width:980px;height:550px;overflow:hidden;"> | |||
| <div> | |||
| <img data-u="image" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/apps.png" /> | |||
| <img data-u="thumb" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/apps.png" /> | |||
| </div> | |||
| <div> | |||
| <img data-u="image" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/apps2.png" /> | |||
| <img data-u="thumb" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/apps2.png" /> | |||
| </div> | |||
| <div> | |||
| <img data-u="image" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/desktop.png" /> | |||
| <img data-u="thumb" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/desktop.png" /> | |||
| </div> | |||
| <div> | |||
| <img data-u="image" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/irc.png" /> | |||
| <img data-u="thumb" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/irc.png" /> | |||
| </div> | |||
| <div> | |||
| <img data-u="image" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/startmenu.png" /> | |||
| <img data-u="thumb" src="https://raw.githubusercontent.com/RITlug/TigerOS/master/screenshots/startmenu.png" /> | |||
| </div> | |||
| </div> | |||
| <!-- Thumbnail Navigator --> | |||
| <div data-u="thumbnavigator" class="jssort101" style="position:absolute;left:0px;bottom:0px;width:980px;height:100px;background-color:#000;" data-autocenter="1" data-scale-bottom="0.75"> | |||
| <div data-u="slides"> | |||
| <div data-u="prototype" class="p" style="width:190px;height:90px;"> | |||
| <div data-u="thumbnailtemplate" class="t"></div> | |||
| <svg viewbox="0 0 16000 16000" class="cv"> | |||
| <circle class="a" cx="8000" cy="8000" r="3238.1"></circle> | |||
| <line class="a" x1="6190.5" y1="8000" x2="9809.5" y2="8000"></line> | |||
| <line class="a" x1="8000" y1="9809.5" x2="8000" y2="6190.5"></line> | |||
| </svg> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <!-- Arrow Navigator --> | |||
| <div data-u="arrowleft" class="jssora106" style="width:55px;height:55px;top:162px;left:30px;" data-scale="0.75"> | |||
| <svg viewbox="0 0 16000 16000" style="position:absolute;top:0;left:0;width:100%;height:100%;"> | |||
| <circle class="c" cx="8000" cy="8000" r="6260.9"></circle> | |||
| <polyline class="a" points="7930.4,5495.7 5426.1,8000 7930.4,10504.3 "></polyline> | |||
| <line class="a" x1="10573.9" y1="8000" x2="5426.1" y2="8000"></line> | |||
| </svg> | |||
| </div> | |||
| <div data-u="arrowright" class="jssora106" style="width:55px;height:55px;top:162px;right:30px;" data-scale="0.75"> | |||
| <svg viewbox="0 0 16000 16000" style="position:absolute;top:0;left:0;width:100%;height:100%;"> | |||
| <circle class="c" cx="8000" cy="8000" r="6260.9"></circle> | |||
| <polyline class="a" points="8069.6,5495.7 10573.9,8000 8069.6,10504.3 "></polyline> | |||
| <line class="a" x1="5426.1" y1="8000" x2="10573.9" y2="8000"></line> | |||
| </svg> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <!-- /img slider row --> | |||
| <div class="row"> | |||
| <div class="col-sm-4 my-4"> | |||
| <div class="card"> | |||
| <img class="card-img-top" src="https://raw.githubusercontent.com/RITlug/ritlug.github.io/master/img/ritlug-large.png" alt="Ritlug"> | |||
| <div class="card-body"> | |||
| <p class="card-text">The RIT Linux Users Group is an RIT-sponsored club for new and experienced users of the Linux operating system.</p> | |||
| </div> | |||
| <div class="card-footer"> | |||
| <a href="http://ritlug.com/" class="btn btn-primary">RITLUG</a> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <div class="col-sm-4 my-4"> | |||
| <div class="card"> | |||
| <img class="card-img-top" src="img/Octocat.png" alt=""> | |||
| <div class="card-body"> | |||
| <h4 class="card-title">Github</h4> | |||
| <p class="card-text">GitHub brings teams together to work through problems, move ideas forward, and learn from each other along the way.</p> | |||
| </div> | |||
| <div class="card-footer"> | |||
| <a href="https://github.com/RITlug/TigerOS" class="btn btn-primary">Find our project</a> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <div class="col-sm-4 my-4"> | |||
| <div class="card"> | |||
| <img class="card-img-top" src="https://opensource.org/files/osi_keyhole_300X300_90ppi_0.png" alt=""> | |||
| <div class="card-body"> | |||
| <h4 class="card-title">Open Source</h4> | |||
| <p class="card-text">TigerOS is a fully open source project, meaning the source code is publicly available for use and modification.</p> | |||
| </div> | |||
| <div class="card-footer"> | |||
| <a href="https://opensource.org/" class="btn btn-primary">Find Out More!</a> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <!-- /.row --> | |||
| </div> | |||
| <!-- /.container --> | |||
| <!-- Footer --> | |||
| <footer class="py-5 bg-dark"> | |||
| <div class="container"> | |||
| <p class="m-0 text-center text-white">© 2017 TigerOS</p> | |||
| </div> | |||
| <!-- /.container --> | |||
| </footer> | |||
| <script src="js/popper.min.js"></script> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script> | |||
| <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> | |||
| <script src="js/plugins.js"></script> | |||
| <script src="js/main.js"></script> | |||
| <script src="js/jssor.slider-26.3.0.min.js" type="text/javascript"></script> | |||
| <script src="js/slider.js"></script> | |||
| </body> | |||
| </html> | |||
| @ -0,0 +1,24 @@ | |||
| // Avoid `console` errors in browsers that lack a console. | |||
| (function() { | |||
| var method; | |||
| var noop = function () {}; | |||
| var methods = [ | |||
| 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', | |||
| 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', | |||
| 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', | |||
| 'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn' | |||
| ]; | |||
| var length = methods.length; | |||
| var console = (window.console = window.console || {}); | |||
| while (length--) { | |||
| method = methods[length]; | |||
| // Only stub undefined methods. | |||
| if (!console[method]) { | |||
| console[method] = noop; | |||
| } | |||
| } | |||
| }()); | |||
| // Place any jQuery/helper plugins in here. | |||
| @ -0,0 +1,75 @@ | |||
| jQuery(document).ready(function ($) { | |||
| var jssor_1_SlideshowTransitions = [ | |||
| {$Duration:800,x:0.3,$During:{$Left:[0.3,0.7]},$Easing:{$Left:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,x:-0.3,$SlideOut:true,$Easing:{$Left:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,x:-0.3,$During:{$Left:[0.3,0.7]},$Easing:{$Left:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,x:0.3,$SlideOut:true,$Easing:{$Left:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,y:0.3,$During:{$Top:[0.3,0.7]},$Easing:{$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,y:-0.3,$SlideOut:true,$Easing:{$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,y:-0.3,$During:{$Top:[0.3,0.7]},$Easing:{$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,y:0.3,$SlideOut:true,$Easing:{$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,x:0.3,$Cols:2,$During:{$Left:[0.3,0.7]},$ChessMode:{$Column:3},$Easing:{$Left:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,x:0.3,$Cols:2,$SlideOut:true,$ChessMode:{$Column:3},$Easing:{$Left:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,y:0.3,$Rows:2,$During:{$Top:[0.3,0.7]},$ChessMode:{$Row:12},$Easing:{$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,y:0.3,$Rows:2,$SlideOut:true,$ChessMode:{$Row:12},$Easing:{$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,y:0.3,$Cols:2,$During:{$Top:[0.3,0.7]},$ChessMode:{$Column:12},$Easing:{$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,y:-0.3,$Cols:2,$SlideOut:true,$ChessMode:{$Column:12},$Easing:{$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,x:0.3,$Rows:2,$During:{$Left:[0.3,0.7]},$ChessMode:{$Row:3},$Easing:{$Left:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,x:-0.3,$Rows:2,$SlideOut:true,$ChessMode:{$Row:3},$Easing:{$Left:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,x:0.3,y:0.3,$Cols:2,$Rows:2,$During:{$Left:[0.3,0.7],$Top:[0.3,0.7]},$ChessMode:{$Column:3,$Row:12},$Easing:{$Left:$Jease$.$InCubic,$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,x:0.3,y:0.3,$Cols:2,$Rows:2,$During:{$Left:[0.3,0.7],$Top:[0.3,0.7]},$SlideOut:true,$ChessMode:{$Column:3,$Row:12},$Easing:{$Left:$Jease$.$InCubic,$Top:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,$Delay:20,$Clip:3,$Assembly:260,$Easing:{$Clip:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,$Delay:20,$Clip:3,$SlideOut:true,$Assembly:260,$Easing:{$Clip:$Jease$.$OutCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,$Delay:20,$Clip:12,$Assembly:260,$Easing:{$Clip:$Jease$.$InCubic,$Opacity:$Jease$.$Linear},$Opacity:2}, | |||
| {$Duration:800,$Delay:20,$Clip:12,$SlideOut:true,$Assembly:260,$Easing:{$Clip:$Jease$.$OutCubic,$Opacity:$Jease$.$Linear},$Opacity:2} | |||
| ]; | |||
| var jssor_1_options = { | |||
| $AutoPlay: 1, | |||
| $Align: 0, | |||
| $SlideshowOptions: { | |||
| $Class: $JssorSlideshowRunner$, | |||
| $Transitions: jssor_1_SlideshowTransitions, | |||
| $TransitionsOrder: 1 | |||
| }, | |||
| $ArrowNavigatorOptions: { | |||
| $Class: $JssorArrowNavigator$ | |||
| }, | |||
| $ThumbnailNavigatorOptions: { | |||
| $Class: $JssorThumbnailNavigator$, | |||
| $Cols: 5, | |||
| $SpacingX: 5, | |||
| $SpacingY: 5, | |||
| $Align: 390 | |||
| } | |||
| }; | |||
| var jssor_1_slider = new $JssorSlider$("jssor_1", jssor_1_options); | |||
| /*#region responsive code begin*/ | |||
| var MAX_WIDTH = 980; | |||
| function ScaleSlider() { | |||
| var containerElement = jssor_1_slider.$Elmt.parentNode; | |||
| var containerWidth = containerElement.clientWidth; | |||
| if (containerWidth) { | |||
| var expectedWidth = Math.min(MAX_WIDTH || containerWidth, containerWidth); | |||
| jssor_1_slider.$ScaleWidth(expectedWidth); | |||
| } | |||
| else { | |||
| window.setTimeout(ScaleSlider, 30); | |||
| } | |||
| } | |||
| ScaleSlider(); | |||
| $(window).bind("load", ScaleSlider); | |||
| $(window).bind("resize", ScaleSlider); | |||
| $(window).bind("orientationchange", ScaleSlider); | |||
| /*#endregion responsive code end*/ | |||
| }); | |||