Difference between revisions of "Team:IIT Kanpur/TestPage"

Line 1: Line 1:
 
{{Template:IIT_Kanpur}}
 
{{Template:IIT_Kanpur}}
 
<html>
 
<html>
<style>
+
<div class="container-fluid page-heading" style="background-image:url(https://static.igem.org/mediawiki/2015/a/ab/Ox_modelling-background.jpg)">
 
+
        <h3>Modelling</h3>
 
+
    </div>
 
+
    <div class="container-fluid">
  <head>
+
        <div class="row">
 
+
            <div class="col-md-9">
 
+
                <div class="slim">
 
+
                    <div class="section" id="introduction">
/* Slideshow container */
+
                        <h2>Introduction</h2>
.slideshow-container {
+
                        <p>
 
+
                            Mathematical <a class="definition" title="model" data-content="A simplified or idealised description of a system or process, usually mathematical, that can be used to predict how it will behave.">modelling</a> plays a crucial role in Synthetic Biology by acting as a link between the conception and the physical realisation of a biological circuit. Our modelling team has evaluated the effectiveness of initial designs, and has provided insight into how the system can (or must) be improved.
  margin: auto;
+
                        </p>
  position: relative;
+
 
+
}
+
 
+
/* Hide the images by default */
+
.mySlides {
+
    display: none;
+
}
+
 
+
/* Next & previous buttons */
+
.prev, .next {
+
  cursor: pointer;
+
  position: absolute;
+
  top: 50%;
+
  margin-top: -22px;
+
  width: auto;
+
 
+
  padding: 16px;
+
  color: #CCCCCC;
+
  font-weight: bold;
+
  font-size: 30px;
+
  transition: 0.6s ease;
+
  border-radius: 0 3px 3px 0;
+
}
+
 
+
/* Position the "next button" to the right */
+
.next {
+
  right: 0;
+
  border-radius: 3px 0 0 3px;
+
}
+
 
+
/* On hover, add a black background color with a little bit see-through */
+
.prev:hover, .next:hover {
+
  background-color: rgba(83,77,77,0.80);
+
}
+
 
+
/* Caption text */
+
.text {
+
  color: #D3C7C7;
+
  font-size: 40px;
+
  padding: 8px 12px;
+
  position: absolute;
+
  bottom: 8px;
+
  width: 100%;
+
  text-align: center;
+
}
+
 
+
/* Number text (1/3 etc) */
+
.numbertext {
+
  color: #FFFFFF;
+
  font-size: 4px;
+
  padding: 8px 12px;
+
  position: absolute;
+
  top: 0;
+
}
+
 
+
/* The dots/bullets/indicators */
+
.dot {
+
  cursor: pointer;
+
  height: 25px;
+
  width: 25px;
+
  margin: 0 2px;
+
  background-color: #bbb;
+
  border-radius: 50%;
+
  display: inline-block;
+
  transition: background-color 1.5s ease;
+
}
+
 
+
.active, .dot:hover {
+
  background-color: #717171;
+
}
+
 
+
/* Fading animation */
+
.fade {
+
  -webkit-animation-name: fade;
+
  -webkit-animation-duration: 3s;
+
  animation-name: fade;
+
  animation-duration: 3s;
+
}
+
 
+
@-webkit-keyframes fade {
+
  from {opacity: .4}
+
  to {opacity: 1}
+
}
+
 
+
@keyframes fade {
+
  from {opacity: .4}
+
  to {opacity: 1}
+
}
+
</style>
+
 
+
 
+
 
+
  </head>
+
 
+
  <body>
+
 
+
<!-- Slideshow container -->
+
<div class="slideshow-container">
+
 
+
  <!-- Full-width images with number and caption text -->
+
  <div class="mySlides fade">
+
 
+
    <img src="https://static.igem.org/mediawiki/2018/e/e0/T--IIT_Kanpur--page1re.jpg" style="width:100%">
+
    <div class="text"><a href="www.google.com">SWASH </a></div>
+
  </div>
+
 
+
  <div class="mySlides fade">
+
    <img src="https://static.igem.org/mediawiki/2018/a/a0/T--IIT_Kanpur--page2new.jpg" style="width:100%">
+
    <div class="text"><a href="https://2018.igem.org/Team:Oxford/Team">Water Pollution</a></div>
+
  </div>
+
 
+
  <div class="mySlides fade">
+
    <img src="https://static.igem.org/mediawiki/2018/c/c4/T--IIT_Kanpur--page4new.jpg" style="width:100%">
+
    <div class="text"></div>
+
  </div>
+
 
+
  <!-- Next and previous buttons -->
+
  <a class="prev" onclick="plusSlides(-1)">&#10094;</a>
+
  <a class="next" onclick="plusSlides(1)">&#10095;</a>
+
</div>
+
<br>
+
 
+
<!-- The dots/circles -->
+
<div style="text-align:center">
+
  <span class="dot" onclick="currentSlide(1)"></span>
+
  <span class="dot" onclick="currentSlide(2)"></span>  
+
  <span class="dot" onclick="currentSlide(3)"></span>
+
</div>
+
 
+
<script>
+
var slideIndex = 1;
+
showSlides(slideIndex);
+
 
+
// Next/previous controls
+
function plusSlides(n) {
+
  showSlides(slideIndex += n);
+
}
+
 
+
// Thumbnail image controls
+
function currentSlide(n) {
+
  showSlides(slideIndex = n);
+
}
+
 
+
function showSlides(n) {
+
  var i;
+
  var slides = document.getElementsByClassName("mySlides");
+
  var dots = document.getElementsByClassName("dot");
+
  if (n > slides.length) {slideIndex = 1}
+
  if (n < 1) {slideIndex = slides.length}
+
  for (i = 0; i < slides.length; i++) {
+
      slides[i].style.display = "none";
+
  }
+
  for (i = 0; i < dots.length; i++) {
+
      dots[i].className = dots[i].className.replace(" active", "");
+
  }
+
  slides[slideIndex-1].style.display = "block";
+
  dots[slideIndex-1].className += " active";
+
}
+
</script>
+
 
+
  </body>
+
  
 
</html>
 
</html>
 
{{Template:IIT_Kanpur/Footer}}
 
{{Template:IIT_Kanpur/Footer}}

Revision as of 03:55, 15 October 2018

Modelling

Introduction

Mathematical modelling plays a crucial role in Synthetic Biology by acting as a link between the conception and the physical realisation of a biological circuit. Our modelling team has evaluated the effectiveness of initial designs, and has provided insight into how the system can (or must) be improved.