From 0cff90c0adff3e1438c13bc0853b3c5383f1e1fc Mon Sep 17 00:00:00 2001 From: nael Date: Mon, 17 Jun 2019 18:13:23 +0200 Subject: [PATCH] wip #2747 @0.30 --- .../home-slider/img/home-arrow-left.svg | 8 ++ .../home-slider/img/home-arrow-right.svg | 8 ++ public/_modules/home-slider/index.html | 95 +++++++++++++++++++ public/_modules/home-slider/slider.js | 5 + public/_modules/home-slider/style.styl | 25 +++++ 5 files changed, 141 insertions(+) create mode 100644 public/_modules/home-slider/img/home-arrow-left.svg create mode 100644 public/_modules/home-slider/img/home-arrow-right.svg create mode 100644 public/_modules/home-slider/index.html create mode 100644 public/_modules/home-slider/slider.js create mode 100644 public/_modules/home-slider/style.styl diff --git a/public/_modules/home-slider/img/home-arrow-left.svg b/public/_modules/home-slider/img/home-arrow-left.svg new file mode 100644 index 0000000..1e20da7 --- /dev/null +++ b/public/_modules/home-slider/img/home-arrow-left.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/_modules/home-slider/img/home-arrow-right.svg b/public/_modules/home-slider/img/home-arrow-right.svg new file mode 100644 index 0000000..5a2722b --- /dev/null +++ b/public/_modules/home-slider/img/home-arrow-right.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/_modules/home-slider/index.html b/public/_modules/home-slider/index.html new file mode 100644 index 0000000..939f053 --- /dev/null +++ b/public/_modules/home-slider/index.html @@ -0,0 +1,95 @@ + + + + + + + + + + pmi + + + + +
+
+ + +
+
+
+

Wheel Force Transducer

+
+

+ Wheel Force Transducers (WFT) are used for measuring all wheel forces + and moments. Field and laboratory test of passenger cars, light duty + trucks, heavy duty trucks, vans, SUVs, class 8 trucks, heavy duty + construction and farm equipment. +

+

+ + Découvrir + +

+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + + + + \ No newline at end of file diff --git a/public/_modules/home-slider/slider.js b/public/_modules/home-slider/slider.js new file mode 100644 index 0000000..d7325f0 --- /dev/null +++ b/public/_modules/home-slider/slider.js @@ -0,0 +1,5 @@ +// jshint ignore: start + +$('.arrow').on('click',function () { + alert('test'); +}); \ No newline at end of file diff --git a/public/_modules/home-slider/style.styl b/public/_modules/home-slider/style.styl new file mode 100644 index 0000000..e40e44e --- /dev/null +++ b/public/_modules/home-slider/style.styl @@ -0,0 +1,25 @@ +$h3 = 24px +$h2 = 36px +$barlow = 'Barlow', sans-serif +$muli = 'Muli', sans-serif +$dark = #6B7287 +$lightgrey = #F7F8FC +$darkblue = #152F4E +$lightblue = #0EAADA +$verylightgrey =#E7E9F3 + +* + padding: 0 + box-sizing: border-box !important + margin: 0 + font-family: $muli +.arrow + cursor: pointer +.home-arrow-left + position: absolute; + top: 50%; + left: 2%; +.home-arrow-right + position: absolute; + top: 50%; + right: 2%; \ No newline at end of file -- 2.39.5