-
Notifications
You must be signed in to change notification settings - Fork 1
/
rs040_moteur_stop.html
152 lines (149 loc) · 4.69 KB
/
rs040_moteur_stop.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="start/img/icon.png">
<title>BLOCKLINO</title>
<link href="start/css/bootstrap.css" rel="stylesheet">
<link href="start/css/style.css" rel="stylesheet">
<link href="start/css/font-awesome.min.css" rel="stylesheet">
<script src="start/js/modernizr.js"></script>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">BLOCKLINO</a>
</div>
<div class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav">
<li><a href="start.html">ACCUEIL</a></li>
<li class="active"><a href="bloc.html">COMMENCER</a></li>
<li><a href="about.html">À PROPOS</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</div>
</div>
<div id="service">
<div class="container">
<div class="row">
<div class="col-md-2">
<a href="bloc.html"><img src="start\blocs\long-arrow-left.png"></a>
</div>
<div class="col-md-8">
<h2>Arrêter le moteur...</h2>
<p>Stoppe l'un des deux moteur (gauche ou droit).</p>
<h2>Exemple.</h2>
<p>Dès que la carte RS 040 s'allumera, le moteur droit tournera en avant et 3 secondes plus tard il s'arrêtera.</p>
<img src="start\blocs\capture\rs040_moteur.png"/>
</div>
</div>
</div>
</div>
</div>
<div id="footerwrap">
<div class="container">
<div class="row">
<div class="col-lg-4">
<h4>à propos</h4>
<div class="hline-w"></div>
<p>2018 réalisé avec Bootstrap par JP et Maximilien.<br />Mentions légales</p>
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
</div>
</div>
</div>
</div>
<script src="start/js/jquery.min.2.1.3.js"></script>
<script src="start/js/bootstrap.min.js"></script>
<script src="start/js/retina-1.1.0.js"></script>
<script src="start/js/jquery.hoverdir.js"></script>
<script src="start/js/jquery.hoverex.min.js"></script>
<script src="start/js/jquery.prettyPhoto.js"></script>
<script src="start/js/jquery.isotope.min.js"></script>
<script src="start/js/custom.js"></script>
<script>
(function($) {
"use strict";
var $container = $('.portfolio'),
$items = $container.find('.portfolio-item'),
portfolioLayout = 'fitRows';
if( $container.hasClass('portfolio-centered') ) {
portfolioLayout = 'masonry';
}
$container.isotope({
filter: '*',
animationEngine: 'best-available',
layoutMode: portfolioLayout,
animationOptions: {
duration: 750,
easing: 'linear',
queue: false
},
masonry: {
}
}, refreshWaypoints());
function refreshWaypoints() {
setTimeout(function() {
}, 1000);
}
$('nav.portfolio-filter ul a').on('click', function() {
var selector = $(this).attr('data-filter');
$container.isotope({ filter: selector }, refreshWaypoints());
$('nav.portfolio-filter ul a').removeClass('active');
$(this).addClass('active');
return false;
});
function getColumnNumber() {
var winWidth = $(window).width(),
columnNumber = 1;
if (winWidth > 1200) {
columnNumber = 5;
} else if (winWidth > 950) {
columnNumber = 4;
} else if (winWidth > 600) {
columnNumber = 3;
} else if (winWidth > 400) {
columnNumber = 2;
} else if (winWidth > 250) {
columnNumber = 1;
}
return columnNumber;
}
function setColumns() {
var winWidth = $(window).width(),
columnNumber = getColumnNumber(),
itemWidth = Math.floor(winWidth / columnNumber);
$container.find('.portfolio-item').each(function() {
$(this).css( {
width : itemWidth + 'px'
});
});
}
function setPortfolio() {
setColumns();
$container.isotope('reLayout');
}
$container.imagesLoaded(function () {
setPortfolio();
});
$(window).on('resize', function () {
setPortfolio();
});
})(jQuery);
</script>
</body>
</html>