-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html~
170 lines (156 loc) · 5.58 KB
/
index.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>One Page pour FlowChem</title>
<meta name="Resource-type" content="Document" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="jquery.fullPage.css" />
<!-- <link rel="stylesheet" type="text/css" href="jquery.shoppingList.css" /> -->
<!--[if IE]>
<script type="text/javascript">
var console = { log: function() {} };
</script>
<![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery.fullPage.js"></script>
<script type="text/javascript">
//fullpage
$(document).ready(function() {
var initfullpage = $.fn.fullpage({
slidesColor: ['#1bbc9b', '#4BBFC3', '#7BAABE', 'whitesmoke', '#ccddff'],
anchors: ['firstPage', 'secondPage', '3rdPage'],
scrollingSpeed: 500,
menu: '#menu',
loopHorizontal: false,
});
});
//drag and drop
// ajoute la propriété pour le drop et le transfert de données
$.event.props.push('dataTransfer');
$(document).ready(function() {
var i, $this, $log = $('#log');
$('.liste tr td').on({
// on commence le drag
dragstart: function(e) {
$this = $(this);
//pour les cellules origine le curseur est celui de la copie,
//pour les cellules cilbe c'est celui du déplacement
if($this.hasClass("origine")){
var oData = e.dataTransfer;
oData.effectAllowed = "copy";
}else if ($this.hasClass("cible")){
var oData = e.dataTransfer;
oData.effectAllowed = "move";
}
$(this).css('opacity', '0.5');
// on garde le texte en mémoire
e.dataTransfer.setData('text/html', $(this).html());
},
// on passe sur un élément draggable
dragenter: function(e) { e.preventDefault();},
// on quitte un élément draggable
dragleave: function() {
if($this.hasClass("cible")){
//e.dataTransfer.setData('text/html', $(this).text());
$(this).html("");
};
},
// déclenché tant qu on a pas lâché l élément
dragover: function(e) { e.preventDefault();},
// on lâche l élément
drop: function(e) {
//si la source est bien une cellule cible
//et si la cible du drop est une cellule cible, on duplique le contenu, sinon on fait rien
if($this.hasClass("origine")&$(this).hasClass("cible")){
//On duplique le texte dans le nouvel element
// on récupère le texte initial
var data = e.dataTransfer.getData('text/html');
$(this).html(data);
//si les deux cellule sont des cibles on fait l'échange de donné
}else if ($this.hasClass("cible")&$(this).hasClass("cible")){
// on récupère le texte initial
var data = e.dataTransfer.getData('text/html');
// on met le nouveau texte à la place de l ancien
$this.html($(this).html());
//On duplique le texte dans le nouvel element
$(this).html(data);
};
},
// fin du drag (même sans drop)
dragend: function() {
$(this).css('opacity', '1');
},
// au clic sur un élément
click: function() {
//alert($(this).text());
}
});
});
</script>
</head>
<body>
<ul id="menu">
<li data-menuanchor="firstPage"><a href="#firstPage">Présentation</a></li>
<li data-menuanchor="secondPage"><a href="#secondPage">Chimies</a></li>
<li data-menuanchor="3rdPage"><a href="#3rdPage">Contact</a></li>
</ul>
<div class="section " id="section0">
<h1>FlowChem</h1>
<cite>A new idea about chemical production</cite>
</div>
<div class="section" id="section1">
<div class="slide" id="slide1-0">
<div class="intro">
<h2>Batch processing</h2>
<p>Créer votre propre enchainement de processus !</p>
<br />
<p>
<table class="liste">
<tbody>
<tr>
<td draggable="true" class="origine"><img draggable="false" src="imgs/1-reactor-add-reagent-batch.png" alt="reactor add reagent batch" /><p>reactor add reagent batch</p></td>
<td draggable="true" class="origine"><img draggable="false" src="imgs/2-reactor-heat-transfert-batch.png" alt="reactor heat transfert batch" /><p>reactor heat transfert batch</p></td>
<td draggable="true" class="origine"><img draggable="false" src="imgs/3-reactor-melange-batch.png" alt="reactor melange batch" /><p>reactor melange batch</p></td>
</tr>
</tbody>
</table>
<br>
<table class="liste">
<tbody>
<tr>
<td draggable="true" class="cible"></td>
<td draggable="true" class="cible"></td>
<td draggable="true" class="cible"></td>
<td draggable="true" class="cible"></td>
<td draggable="true" class="cible"></td>
<td draggable="true" class="cible"></td>
<td draggable="true" class="cible"></td>
</tr>
</tbody>
</table>
</p>
<br />
<hr width="50px"/>
<br />
<p>Instruction</p>
<p><img src="imgs/schema.png" alt="schema" width="280px"/></p>
</div>
</div>
<div class="slide"id="slide1-1">
<div class="intro">
<img src="imgs/1.png" alt="simple" />
<h2>Flow Processing</h2>
<p>Easy to use. Configurable and customizable. Amazing</p>
</div>
</div>
</div>
<div class="section" id="section2">
<div class="intro">
<h2>Contact</h2>
<p>Formulaire de contact</p>
</div>
</div>
</body>
</html>