@iris.interactive/handcook 2.3.2 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/scripts/SmoothScroll.js +1 -41
- package/public/scripts/index.js +1 -250
- package/public/styles/scss/_utils.scss +6 -0
- package/public/styles/scss/_variables.scss +1 -1
- package/public/styles/scss/mixins/_mixin-font.scss +1 -1
- package/public/styles/scss/mixins/_mixin-style.scss +2 -2
- package/public/styles/style.css +1 -159
- package/resources/assets/scripts/SmoothScroll.js +0 -41
- package/resources/assets/styles/_utils.scss +0 -96
- package/resources/assets/styles/_variables.scss +0 -419
- package/resources/assets/styles/handcook.scss +0 -20
- package/resources/assets/styles/mixins/_mixin-font.scss +0 -43
- package/resources/assets/styles/mixins/_mixin-layout.scss +0 -84
- package/resources/assets/styles/mixins/_mixin-style.scss +0 -133
- package/resources/index.html +0 -39
- package/resources/index.js +0 -18
- package/resources/style.scss +0 -21
package/resources/index.html
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
~ IRIS Interactive
|
|
3
|
-
~
|
|
4
|
-
~ NOTICE OF LICENSE
|
|
5
|
-
~
|
|
6
|
-
~ This source file is no subject to a specific license
|
|
7
|
-
~ but it belongs to the company IRIS Interactive.
|
|
8
|
-
~ You can contact IRIS Interactive at the following
|
|
9
|
-
~ address: contact@iris-interactive.fr
|
|
10
|
-
~
|
|
11
|
-
~ @author Lucas ROCHE
|
|
12
|
-
~ @date 27/01/2022 14:31
|
|
13
|
-
~ @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
|
|
14
|
-
-->
|
|
15
|
-
|
|
16
|
-
<html>
|
|
17
|
-
<head>
|
|
18
|
-
<title>IRIStyle</title>
|
|
19
|
-
<script type="text/javascript">var exports = {};</script>
|
|
20
|
-
<script type="text/javascript" src="scripts/index.js"></script>
|
|
21
|
-
<link rel="stylesheet" href="styles/style.css">
|
|
22
|
-
|
|
23
|
-
</head>
|
|
24
|
-
<body>
|
|
25
|
-
<div id="step-1" style="height: 1800px; background-color: red;">
|
|
26
|
-
<a href="#step-2" data-trigger="wpiris-scroll">To step 2</a>
|
|
27
|
-
</div>
|
|
28
|
-
<div id="step-2" style="height: 1800px; background-color: green;">
|
|
29
|
-
<a href="#step-3" data-trigger="wpiris-scroll">To step 3</a>
|
|
30
|
-
</div>
|
|
31
|
-
<div id="step-3" style="height: 1800px; background-color: yellow;">
|
|
32
|
-
<a href="#step-1" data-trigger="wpiris-scroll">To step 1</a>
|
|
33
|
-
</div>
|
|
34
|
-
</body>
|
|
35
|
-
<script type="text/javascript">
|
|
36
|
-
const SmoothScroll = exports.SmoothScroll;
|
|
37
|
-
SmoothScroll( '[data-trigger="wpiris-scroll"]', 1000 );
|
|
38
|
-
</script>
|
|
39
|
-
</html>
|
package/resources/index.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* IRIS Interactive
|
|
3
|
-
*
|
|
4
|
-
* NOTICE OF LICENSE
|
|
5
|
-
*
|
|
6
|
-
* This source file is no subject to a specific license
|
|
7
|
-
* but it belongs to the company IRIS Interactive.
|
|
8
|
-
* You can contact IRIS Interactive at the following
|
|
9
|
-
* address: contact@iris-interactive.fr
|
|
10
|
-
*
|
|
11
|
-
* @author Lucas ROCHE
|
|
12
|
-
* @date 27/01/2022 14:32
|
|
13
|
-
* @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
import SmoothScroll from '@package_script/SmoothScroll';
|
|
17
|
-
|
|
18
|
-
exports.SmoothScroll = SmoothScroll;
|
package/resources/style.scss
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* IRIS Interactive
|
|
3
|
-
*
|
|
4
|
-
* NOTICE OF LICENSE
|
|
5
|
-
*
|
|
6
|
-
* This source file is no subject to a specific license
|
|
7
|
-
* but it belongs to the company IRIS Interactive.
|
|
8
|
-
* You can contact IRIS Interactive at the following
|
|
9
|
-
* address: contact@iris-interactive.fr
|
|
10
|
-
*
|
|
11
|
-
* @author Lucas ROCHE
|
|
12
|
-
* @date 27/01/2022 14:32
|
|
13
|
-
* @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
@import "assets/styles/variables";
|
|
18
|
-
@import "assets/styles/mixins/mixin-layout";
|
|
19
|
-
@import "assets/styles/mixins/mixin-style";
|
|
20
|
-
@import "assets/styles/mixins/mixin-font";
|
|
21
|
-
@import "assets/styles/utils";
|