forked from StartBootstrap/startbootstrap-modern-business
-
Notifications
You must be signed in to change notification settings - Fork 0
/
carousel.php
44 lines (41 loc) · 1.86 KB
/
carousel.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
function carousel($pageNum)
{
?>
<header id="myCarousel" class="carousel slide">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" <?php if ($pageNum == 1) echo 'class="active"'; ?> ></li>
<li data-target="#myCarousel" data-slide-to="1" <?php if ($pageNum == 2) echo 'class="active"'; ?> ></li>
</ol>
<div class="carousel-inner first">
<!-- Wrapper for slides -->
<div class="item<?php if ($pageNum == 1) echo ' active';?> carousel-first">
<img src="images/isecure_header1_b.png" style="max-height:90%;max-width:90%;margin-left:auto;margin-right:5%;margin-top:auto;margin-bottom:auto;padding-top:1%;">
<div class="carousel-caption col-xs-10 col-sm-6 col-md-4">
<h1>WS-Kanava</h1>
<h3>Kun tarvitset liikeideaasi tai asiakas-projektiasi varten pankkiyhteyskanavan tai haluat automatisoida pankkiaineistojen käsittelyä</h3>
<a href="ws-kanava.html" class="btn btn-primary">WS-Kanava</a><br><br>
</div>
</div>
<!-- Wrapper for slides -->
<div class="item<?php if ($pageNum == 2) echo ' active';?> carousel-second">
<img src="images/kustom.png" style="max-height:90%;max-width:90%;margin-left:auto;margin-right:20%;margin-top:auto;margin-bottom:auto;padding-top:2%;">
<div class="carousel-caption col-xs-10 col-sm-6 col-md-4">
<h1>WS-Kanava API</h1>
<h3>Yksi ja sama API rajapinta integraatiotasi varten kaikille pankeille. Skaalautuu automaattisesti tarpeidesi mukaan.</h3>
<a href="ws-api.html" class="btn btn-primary">WS-Kanava API</a><br><br>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="icon-prev"></span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="icon-next"></span>
</a>
</header>
<?php
}
?>