commit b68579a3281b1c736d610e189ee677473136f294 Author: Damien RENOU Date: Mon Jan 16 09:55:43 2023 +0100 initial src diff --git a/README.md b/README.md new file mode 100644 index 0000000..11c7d66 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +Source des contenus elearning Softs Skills \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/adlcp_rootv1p2.xsd b/scorm-s-integrer-ds-equipe/adlcp_rootv1p2.xsd new file mode 100644 index 0000000..283f438 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/adlcp_rootv1p2.xsd @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/scorm-s-integrer-ds-equipe/css/ajax_loader_blue.gif b/scorm-s-integrer-ds-equipe/css/ajax_loader_blue.gif new file mode 100644 index 0000000..905788c Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/ajax_loader_blue.gif differ diff --git a/scorm-s-integrer-ds-equipe/css/ajax_loader_orange.gif b/scorm-s-integrer-ds-equipe/css/ajax_loader_orange.gif new file mode 100644 index 0000000..dd91edc Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/ajax_loader_orange.gif differ diff --git a/scorm-s-integrer-ds-equipe/css/anim.css b/scorm-s-integrer-ds-equipe/css/anim.css new file mode 100644 index 0000000..064e713 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/anim.css @@ -0,0 +1,456 @@ + +.shakeludiscape{ + animation-name: spaceboots; + animation-duration: 1s; + transform-origin:50% 50%; + animation-iteration-count: infinite; + animation-timing-function: linear; +} + +.shakeludiscape{ + -webkit-animation-name: spaceboots; + -webkit-animation-duration: 1s; + -webkit-transform-origin:50% 50%; + -webkit-animation-iteration-count: infinite; + -webkit-animation-timing-function: linear; +} + +.shakeludiscape{ + -ms-animation-name: spaceboots; + -ms-animation-duration: 1s; + -ms-transform-origin:50% 50%; + -ms-animation-iteration-count: infinite; + -ms-animation-timing-function: linear; +} + +@keyframes spaceboots { + 0% { + transform: translate(2px, 1px) rotate(0deg);} + 10% { + transform: translate(-1px, -2px) rotate(-1deg); + } + 20% { + transform: translate(-3px, 0px) rotate(1deg); + } + 30% { + transform: translate(0px, 2px) rotate(0deg); + } + 40% { + transform: translate(1px, -1px) rotate(1deg); + } + 50% { + transform: translate(-1px, 2px) rotate(-1deg); + } + 60% { + transform: translate(-3px, 1px) rotate(0deg); + } + 70% { + transform: translate(2px, 1px) rotate(-1deg); + } + 80% { + transform: translate(-1px, -1px) rotate(1deg); + } + 90% { + transform: translate(2px, 2px) rotate(0deg); + } + 100% { + transform: translate(1px, -2px) rotate(-1deg); + } +} + +@-webkit-keyframes spaceboots { + 0% { + -webkit-transform: translate(2px, 1px) rotate(0deg);} + 10% { + -webkit-transform: translate(-1px, -2px) rotate(-1deg); + } + 20% { + -webkit-transform: translate(-3px, 0px) rotate(1deg); + } + 30% { + -webkit-transform: translate(0px, 2px) rotate(0deg); + } + 40% { + -webkit-transform: translate(1px, -1px) rotate(1deg); + } + 50% { + -webkit-transform: translate(-1px, 2px) rotate(-1deg); + } + 60% { + -webkit-transform: translate(-3px, 1px) rotate(0deg); + } + 70% { + -webkit-transform: translate(2px, 1px) rotate(-1deg); + } + 80% { + -webkit-transform: translate(-1px, -1px) rotate(1deg); + } + 90% { + -webkit-transform: translate(2px, 2px) rotate(0deg); + } + 100% { + -webkit-transform: translate(1px, -2px) rotate(-1deg); + } +} + +@-ms-keyframes spaceboots { + 0% { + -ms-transform: translate(2px, 1px) rotate(0deg);} + 10% { + -ms-transform: translate(-1px, -2px) rotate(-1deg); + } + 20% { + -ms-transform: translate(-3px, 0px) rotate(1deg); + } + 30% { + -ms-transform: translate(0px, 2px) rotate(0deg); + } + 40% { + -ms-transform: translate(1px, -1px) rotate(1deg); + } + 50% { + -ms-transform: translate(-1px, 2px) rotate(-1deg); + } + 60% { + -ms-transform: translate(-3px, 1px) rotate(0deg); + } + 70% { + -ms-transform: translate(2px, 1px) rotate(-1deg); + } + 80% { + -ms-transform: translate(-1px, -1px) rotate(1deg); + } + 90% { + -ms-transform: translate(2px, 2px) rotate(0deg); + } + 100% { + -ms-transform: translate(1px, -2px) rotate(-1deg); + } +} + +/** + * http://animista.net/play/attention/jello + * animation bounce-in-top + * ---------------------------------------- + */ + +.bounce-in-top { + -webkit-animation: bounce-in-top 1.1s 1s both; + animation: bounce-in-top 1.1s 1s both; + -ms-animation : bounce-in-top 1.1s 1s both; +} +@-webkit-keyframes bounce-in-top { + 0% { + -webkit-transform: translateY(-500px); + transform: translateY(-500px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + 38% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + opacity: 1; + } + 55% { + -webkit-transform: translateY(-65px); + transform: translateY(-65px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 72% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 81% { + -webkit-transform: translateY(-28px); + transform: translateY(-28px); + -webkit-animation-timing-function: ease-in; + } + 90% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 95% { + -webkit-transform: translateY(-8px); + transform: translateY(-8px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} +@keyframes bounce-in-top { + 0% { + -webkit-transform: translateY(-500px); + transform: translateY(-500px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + 38% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + opacity: 1; + } + 55% { + -webkit-transform: translateY(-65px); + transform: translateY(-65px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 72% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 81% { + -webkit-transform: translateY(-28px); + transform: translateY(-28px); + -webkit-animation-timing-function: ease-in; + } + 90% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 95% { + -webkit-transform: translateY(-8px); + transform: translateY(-8px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} +@-ms-keyframes bounce-in-top { + 0% { + -ms-transform: translateY(-500px); + transform: translateY(-500px); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + 38% { + -ms-transform: translateY(0); + transform: translateY(0); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + opacity: 1; + } + 55% { + -ms-transform: translateY(-65px); + transform: translateY(-65px); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 72% { + -ms-transform: translateY(0); + transform: translateY(0); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 81% { + -ms-transform: translateY(-28px); + transform: translateY(-28px); + -ms-animation-timing-function: ease-in; + } + 90% { + -ms-transform: translateY(0); + transform: translateY(0); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 95% { + -ms-transform: translateY(-8px); + transform: translateY(-8px); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 100% { + -ms-transform: translateY(0); + transform: translateY(0); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} + +.slideludiscape{ + -webkit-animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; + animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; + -ms-animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; +} +@-webkit-keyframes slide-in-elliptic-top-fwd { + 0% { + -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0); + transform: translateY(-600px) rotateX(-30deg) scale(0); + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + opacity: 0; + } + 100% { + -webkit-transform: translateY(0) rotateX(0) scale(1); + transform: translateY(0) rotateX(0) scale(1); + -webkit-transform-origin: 50% 1400px; + transform-origin: 50% 1400px; + opacity: 1; + } +} +@-ms-keyframes slide-in-elliptic-top-fwd { + 0% { + -ms-transform: translateY(-600px) rotateX(-30deg) scale(0); + transform: translateY(-600px) rotateX(-30deg) scale(0); + -ms-transform-origin: 50% 100%; + transform-origin: 50% 100%; + opacity: 0; + } + 100% { + -ms-transform: translateY(0) rotateX(0) scale(1); + transform: translateY(0) rotateX(0) scale(1); + -ms-transform-origin: 50% 1400px; + transform-origin: 50% 1400px; + opacity: 1; + } +} +@keyframes slide-in-elliptic-top-fwd { + 0% { + -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0); + transform: translateY(-600px) rotateX(-30deg) scale(0); + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + opacity: 0; + } + 100% { + -webkit-transform: translateY(0) rotateX(0) scale(1); + transform: translateY(0) rotateX(0) scale(1); + -webkit-transform-origin: 50% 1400px; + transform-origin: 50% 1400px; + opacity: 1; + } +} + +.heartbeatludiscape{ + -webkit-animation: heartbeat 1.5s ease-in-out infinite both; + animation: heartbeat 1.5s ease-in-out infinite both; + -ms-animation: heartbeat 1.5s ease-in-out infinite both; +} +@-ms-keyframes heartbeat { + from { + -ms-transform: scale(1); + transform: scale(1); + -ms-transform-origin: center center; + transform-origin: center center; + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 10% { + -ms-transform: scale(0.91); + transform: scale(0.91); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 17% { + -ms-transform: scale(0.98); + transform: scale(0.98); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 33% { + -ms-transform: scale(0.87); + transform: scale(0.87); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 45% { + -ms-transform: scale(1); + transform: scale(1); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} +@-webkit-keyframes heartbeat { + from { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 10% { + -webkit-transform: scale(0.91); + transform: scale(0.91); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 17% { + -webkit-transform: scale(0.98); + transform: scale(0.98); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 33% { + -webkit-transform: scale(0.87); + transform: scale(0.87); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 45% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} +@keyframes heartbeat { + from { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 10% { + -webkit-transform: scale(0.91); + transform: scale(0.91); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 17% { + -webkit-transform: scale(0.98); + transform: scale(0.98); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 33% { + -webkit-transform: scale(0.87); + transform: scale(0.87); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 45% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} diff --git a/scorm-s-integrer-ds-equipe/css/blockmenu.css b/scorm-s-integrer-ds-equipe/css/blockmenu.css new file mode 100644 index 0000000..c557249 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/blockmenu.css @@ -0,0 +1,51 @@ + +.blockmenu{ + position : absolute; + left : 100px; + top : 100px; + width : 420px; + height : 420px; + border-bottom : solid 1px #eaeaea; + word-wrap : break-word; + margin : 0px; + padding : 0px; + z-index : 3; + overflow : hidden; +} +.blockmenu a li { + margin-bottom: 5px; + padding: 17px; + padding-right: 0px; + padding-left: 0px; + list-style-type: none; + word-wrap: break-word; + background: url('icons/bg-blue.png') no-repeat scroll 0 160px #eaeaea; + border: 1px solid #fff; + box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2); + color: #2e2e2e; + display: block; + float: left; + font-family: "Source sans pro"; + font-size: 20px; + font-weight: 600; + text-shadow: 0 1px 1px #fff; + transition: all 0.5s ease 0s; + margin-left:1%; + width: 98%; + cursor:pointer; +} +.blockmenu a li img { + margin: 0 2px 0 0; + padding-left: 10px; + padding-right: 5px; +} + +.blockmenualignleft { + float: left; + text-align: left; +} + +.blockmenu a li:hover{ + color: white; + background: url('icons/bg-blue.png') no-repeat scroll 0px -73px #eaeaea; +} \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/css/bouton.css b/scorm-s-integrer-ds-equipe/css/bouton.css new file mode 100644 index 0000000..50bd3be --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/bouton.css @@ -0,0 +1,808 @@ + +.bullewhite0 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bullewhite.png"); + background-position: left top; + background-repeat: no-repeat; +} + +.bullewhite1 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bullewhite.png"); + background-position: right top; + background-repeat: no-repeat; +} + +.bullewhite2 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bullewhite.png"); + background-position: left bottom; + background-repeat: no-repeat; +} + +.bullewhite3 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bullewhite.png"); + background-position: right bottom; + background-repeat: no-repeat; +} + +/* BULLE BEIGE */ +.bullebeige0 { + position:absolute; + border: 0px solid red; + padding: 1px;margin: 1px; + background-image:url("../fx/bullebeige.png"); + background-position: left top; + background-repeat: no-repeat; +} +.bullebeige1 { + position:absolute; + border: 0px solid red; + padding: 1px;margin: 1px; + background-image:url("../fx/bullebeige.png"); + background-position: right top; + background-repeat: no-repeat; +} +.bullebeige2 { + position:absolute; + border: 0px solid red; + padding: 1px;margin: 1px; + background-image:url("../fx/bullebeige.png"); + background-position: left bottom; + background-repeat: no-repeat; +} +.bullebeige3 { + position:absolute; + border: 0px solid red; + padding: 1px;margin: 1px; + background-image:url("../fx/bullebeige.png"); + background-position: right bottom; + background-repeat: no-repeat; +} + +.bulleblue0 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleblue.png"); + background-position: left top; + background-repeat: no-repeat; +} +.bulleblue1 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleblue.png"); + background-position: right top; + background-repeat: no-repeat; +} +.bulleblue2 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleblue.png"); + background-position: left bottom; + background-repeat: no-repeat; +} +.bulleblue3 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleblue.png"); + background-position: right bottom; + background-repeat: no-repeat; +} + +.bulleanote0 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleanote.png"); + background-position: left top; + background-repeat: no-repeat; +} +.bulleanote1 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bulleanote.png"); + background-position: right top; + background-repeat: no-repeat; +} +.bulleanote2 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bulleanote.png"); + background-position: left bottom; + background-repeat: no-repeat; +} +.bulleanote3 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bulleanote.png"); + background-position: right bottom; + background-repeat: no-repeat; +} + + + +/*STANDARD*/ +.css3button { + position:absolute; + color: #474747; + background:gray; + background:url("fondbtn.jpg") top center; + background: -moz-linear-gradient( + top, + #f2f2f2 0%, + #e1e1e1 50%, + #dddddd 50%, + #bcbcbc); + background: -webkit-gradient( + linear, left top, left bottom, + from(#f2f2f2), + color-stop(0.50, #e1e1e1), + color-stop(0.50, #dddddd), + to(#bcbcbc)); + border-radius: 6px; + -moz-border-radius: 6px; + -webkit-border-radius: 6px; + border: 1px solid #8a8a8a; + -moz-box-shadow: + 0px 1px 3px rgba(041,005,041,0), + inset 0px 1px 6px rgba(005,088,255,0.2); + -webkit-box-shadow: + 0px 1px 3px rgba(041,005,041,0), + inset 0px 1px 6px rgba(005,088,255,0.2); + text-shadow: + 0px 0px 0px rgba(000,000,000,0), + 0px 0px 0px rgba(255,255,255,0); + cursor:pointer; +} +.css3button:hover { + border: 1px solid pink; + text-shadow: + 0px 0px 0px rgba(000,000,000,0), + 0px 0px 0px pink; + cursor:pointer; + border: 1px solid #8a8a8a; +} +.css3button:active { + border: 1px solid pink; + text-shadow: + 0px 0px 0px rgba(000,000,000,0), + 0px 0px 0px pink; + cursor:pointer; + border: 1px solid #8a8a8a; +} + +.css3modernblue { + -moz-box-shadow:inset 0px 1px 0px 0px #bee2f9; + -webkit-box-shadow:inset 0px 1px 0px 0px #bee2f9; + box-shadow:inset 0px 1px 0px 0px #bee2f9; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #63b8ee), color-stop(1, #468ccf) ); + background:-moz-linear-gradient( center top, #63b8ee 5%, #468ccf 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63b8ee', endColorstr='#468ccf'); + background-color:#63b8ee; + text-indent:0; + border:1px solid #3866a3; + color:#14396a; + font-weight:bold; + font-style:normal; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #7cacde; +} +.css3modernblue:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #468ccf), color-stop(1, #63b8ee) ); + background:-moz-linear-gradient( center top, #468ccf 5%, #63b8ee 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#468ccf', endColorstr='#63b8ee'); + background-color:#468ccf; +} +.css3modernblue:active { + position:relative; + top:1px; +} + +.css3modernorange { + -moz-box-shadow:inset 0px 1px 0px 0px #f9eca0; + -webkit-box-shadow:inset 0px 1px 0px 0px #f9eca0; + box-shadow:inset 0px 1px 0px 0px #f9eca0; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f0c911), color-stop(1, #f2ab1e) ); + background:-moz-linear-gradient( center top, #f0c911 5%, #f2ab1e 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0c911', endColorstr='#f2ab1e'); + background-color:#f0c911; + text-indent:0; + border:1px solid #e65f44; + font-weight:bold; + font-style:normal; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #ded17c; +} +.css3modernorange:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f2ab1e), color-stop(1, #f0c911) ); + background:-moz-linear-gradient( center top, #f2ab1e 5%, #f0c911 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2ab1e', endColorstr='#f0c911'); + background-color:#f2ab1e; +} +.css3modernorange:active { + position:relative; + top:1px; +} + +.css3modernpurple { + -moz-box-shadow:inset 0px 1px 0px 0px #e184f3; + -webkit-box-shadow:inset 0px 1px 0px 0px #e184f3; + box-shadow:inset 0px 1px 0px 0px #e184f3; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c123de), color-stop(1, #a20dbd) ); + background:-moz-linear-gradient( center top, #c123de 5%, #a20dbd 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c123de', endColorstr='#a20dbd'); + background-color:#c123de; + text-indent:0; + border:1px solid #a511c0; + color:#ffffff; + font-weight:bold; + font-style:normal; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #9b14b3; +} +.css3modernpurple:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a20dbd), color-stop(1, #c123de) ); + background:-moz-linear-gradient( center top, #a20dbd 5%, #c123de 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a20dbd', endColorstr='#c123de'); + background-color:#a20dbd; +} +.css3modernpurple:active { + position:relative; + top:1px; +} + +.css3moderngray { + -moz-box-shadow:inset 0px 1px 0px 0px #a7b6c9; + -webkit-box-shadow:inset 0px 1px 0px 0px #a7b6c9; + box-shadow:inset 0px 1px 0px 0px #a7b6c9; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4d5359), color-stop(1, #0c182b) ); + background:-moz-linear-gradient( center top, #4d5359 5%, #0c182b 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4d5359', endColorstr='#0c182b'); + background-color:#4d5359; + text-indent:0; + border:1px solid #000000; + color:#ffffff; + font-weight:bold; + font-style:normal; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #62686e; +} +.css3moderngray:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #0c182b), color-stop(1, #4d5359) ); + background:-moz-linear-gradient( center top, #0c182b 5%, #4d5359 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c182b', endColorstr='#4d5359'); + background-color:#0c182b; +}.css3moderngray:active { + position:relative; + top:1px; +} + + +.css3modernreddarker { + -moz-box-shadow:inset 0px 1px 0px 0px #f5978e; + -webkit-box-shadow:inset 0px 1px 0px 0px #f5978e; + box-shadow:inset 0px 1px 0px 0px #f5978e; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f24537), color-stop(1, #c62d1f) ); + background:-moz-linear-gradient( center top, #f24537 5%, #c62d1f 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f24537', endColorstr='#c62d1f'); + background-color:#f24537; + text-indent:0; + border:1px solid #d02718; + color:#ffffff; + font-weight:bold; + font-style:normal; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #810e05; +} +.css3modernreddarker:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24537) ); + background:-moz-linear-gradient( center top, #c62d1f 5%, #f24537 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24537'); + background-color:#c62d1f; +}.css3modernreddarker:active { + position:relative; + top:1px; +} + + +.css3modernpink { + -moz-box-shadow:inset 0px 1px 0px 0px #fbafe3; + -webkit-box-shadow:inset 0px 1px 0px 0px #fbafe3; + box-shadow:inset 0px 1px 0px 0px #fbafe3; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ff5bb0), color-stop(1, #ef027d) ); + background:-moz-linear-gradient( center top, #ff5bb0 5%, #ef027d 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bb0', endColorstr='#ef027d'); + background-color:#ff5bb0; + text-indent:0; + border:1px solid #ee1eb5; + color:#ffffff; + font-weight:bold; + font-style:normal; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #c70067; +} +.css3modernpink:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ef027d), color-stop(1, #ff5bb0) ); + background:-moz-linear-gradient( center top, #ef027d 5%, #ff5bb0 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ef027d', endColorstr='#ff5bb0'); + background-color:#ef027d; +}.css3modernpink:active { + position:relative; + top:1px; +} + + +.css3modernbutton3d { + background-color: #3bb3e0; + text-decoration: none; + color: #fff; + background-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); + background-image: -o-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); + background-image: -moz-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); + background-image: -webkit-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); + background-image: -ms-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); + background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(44,160,202)), color-stop(1, rgb(62,184,229)) ); + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + -o-border-radius: 8px; + border-radius: 8px; + -webkit-box-shadow: inset 0px 8px 0px #2ab7ec, 0px 8px 0px 0px #156785, 0px 15px 20px #999; + -moz-box-shadow: inset 0px 8px 0px #2ab7ec, 0px 8px 0px 0px #156785, 0px 15px 20px #999; + -o-box-shadow: inset 0px 8px 0px #2ab7ec, 0px 8px 0px 0px #156785, 0px 15px 20px #999; + box-shadow: inset 0px 8px 0px #2ab7ec, 0px 8px 0px 0px #156785, 0px 15px 20px #999; + border:none; +} +.css3modernbutton3d:hover, .css3modernbutton3d:active{ + background-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); + background-image: -o-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); + background-image: -moz-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); + background-image: -webkit-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); + background-image: -ms-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); + background-image: -webkit-gradient( + linear, + left bottom, + left top, + color-stop(0, rgb(62,184,229)), + color-stop(1, rgb(44,160,202)) + ); + -webkit-box-shadow: inset 0px 4px 0px #2ab7ec, 0px 6px 0px 0px #156785, 0px 15px 20px #999; + -moz-box-shadow: inset 0px 4px 0px #2ab7ec, 0px 6px 0px 0px #156785, 0px 15px 20px #999; + -o-box-shadow: inset 0px 4px 0px #2ab7ec, 0px 6px 0px 0px #156785, 0px 15px 20px #999; + box-shadow: inset 0px 4px 0px #2ab7ec, 0px 6px 0px 0px #156785, 0px 15px 20px #999; + border-top:solid 1px white; + margin-top:2px; +} + + +.css3modernbuttonPink3d { + background-color: #ec528d; + background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(hsla(338, 90%, 80%, .8)), to(hsla(338, 90%, 70%, .2))); + background-image: -webkit-linear-gradient(hsla(338, 90%, 80%, .8), hsla(338, 90%, 70%, .2)); + background-image: -moz-linear-gradient(hsla(338, 90%, 80%, .8), hsla(338, 90%, 70%, .2)); + background-image: -o-linear-gradient(hsla(338, 90%, 80%, .8), hsla(338, 90%, 70%, .2)); + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; + -webkit-box-shadow: 0 8px 0 #c5376d, 0 15px 20px rgba(0, 0, 0, .35); + -moz-box-shadow: 0 8px 0 #c5376d, 0 15px 20px rgba(0, 0, 0, .35); + box-shadow: 0 8px 0 #c5376d, 0 15px 20px rgba(0, 0, 0, .35); + -webkit-transition: -webkit-box-shadow .1s ease-in-out; + -moz-transition: -moz-box-shadow .1s ease-in-out; + -o-transition: -o-box-shadow .1s ease-in-out; + transition: box-shadow .1s ease-in-out; + color: #fff; + text-shadow: 0 -1px 1px rgba(175, 49, 95, .9), 0 0 5px rgba(255, 255, 255, .8); +} +.css3modernbuttonPink3d:hover, .css3modernbuttonPink3d:active { + -webkit-box-shadow: 0 6px 0 #c5376d, 0 12px 20px rgba(0, 0, 0, .35); + -moz-box-shadow: 0 6px 0 #c5376d, 0 12px 20px rgba(0, 0, 0, .35); + box-shadow: 0 6px 0 #c5376d, 0 12px 20px rgba(0, 0, 0, .35); + text-shadow: 0 -1px 1px rgba(175, 49, 95, .9), 0 0 5px rgba(255, 255, 255, .8); + background-color: #EC528D; + border-top:solid 1px white; + margin-top:2px; +} + + +.css3modernbuttonDark3d { + background-color: #2E2E2E; + text-decoration: none; + color: #fff; + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + -o-border-radius: 8px; + border-radius: 8px; + -webkit-box-shadow: inset 0px 8px 0px #2E2E2E, 0px 8px 0px 0px #6E6E6E, 0px 15px 20px #999; + -moz-box-shadow: inset 0px 8px 0px #2E2E2E, 0px 8px 0px 0px #6E6E6E, 0px 15px 20px #999; + -o-box-shadow: inset 0px 8px 0px #2E2E2E, 0px 8px 0px 0px #6E6E6E, 0px 15px 20px #999; + box-shadow: inset 0px 8px 0px #2E2E2E, 0px 8px 0px 0px #6E6E6E, 0px 15px 20px #999; + text-shadow: 0 -1px 1px #2E2E2E, 0 0 5px rgba(255, 255, 255, .8); + border:none; +} +.css3modernbuttonDark3d:hover, .css3modernbuttonDark3d:active{ + -webkit-box-shadow: inset 0px 4px 0px #2E2E2E, 0px 6px 0px 0px #6E6E6E, 0px 15px 20px #999; + -moz-box-shadow: inset 0px 4px 0px #2E2E2E, 0px 6px 0px 0px #6E6E6E, 0px 15px 20px #999; + -o-box-shadow: inset 0px 4px 0px #2E2E2E, 0px 6px 0px 0px #6E6E6E, 0px 15px 20px #999; + box-shadow: inset 0px 4px 0px #2E2E2E, 0px 6px 0px 0px #6E6E6E, 0px 15px 20px #999; + border-top:solid 1px white; + margin-top:2px; +} + + +.ie8button { + position:absolute; + border: 1px solid #8a8a8a; + color: #474747; + background:whitesmoke; + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-9 */ + background:url("fondbtn.jpg") top center; + cursor:pointer; + border-radius: 6px; + -moz-border-radius: 6px; + -webkit-border-radius: 6px; +} +.ie8button:hover { + border: 1px solid pink; + cursor:pointer; +} +.ie8button:active { + border: 1px solid pink; + cursor:pointer; +} + +.palebluebutton +{ +background: #e7eef5; +border: 1px solid #becfe3; +border-radius: 16px; +-moz-border-radius: 16px; +-webkit-border-radius: 16px; +-moz-box-shadow: inset 0 1px 0 0 #fff; +-webkit-box-shadow: inset 0 1px 0 0 #fff; +color: #2a65a6; +font-size: 12px; +font-weight: normal; +line-height: 1; +padding: 5px 0 6px 0; +text-align: center; +width: 150px; +} + +.palebluebutton:hover +{ +color: #04B4AE; +border: 1px solid #04B4AE; +} +.palebluebutton:active +{ +color: #04B4AE; +border: 1px solid #04B4AE; +} + +.ipadul{ + position:absolute; + background:gray; + background:url("fondbtn.jpg") top center; + background: -moz-linear-gradient( + top, + #f2f2f2 0%, + #e1e1e1 50%, + #dddddd 50%, + #bcbcbc); + background: -webkit-gradient( + linear, left top, left bottom, + from(#f2f2f2), + color-stop(0.50, #e1e1e1), + color-stop(0.50, #dddddd), + to(#bcbcbc)); + background: linear-gradient(#DDDDDD, #BBBBBB) repeat scroll 0 0 #BBBBBB; + border: 1px solid #BBBBBB; + padding:0px; + margin:0px; + border-radius: 8px; +} +.ipadli{ + color: #333333; + font-weight: bold; + margin: 0; + display: block; + margin:0px; + border-radius: 8px; + padding:0px; +} +.ipadli:active{ + list-style: none outside none; +} + + +.ipadbutton{ + display: block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + color: #2F3E46; + text-shadow: 0 1px 0 #FFFFFF; + text-decoration: none !important; + list-style: none outside none; + text-align:center; + border-radius: 8px; +} +.ipadbutton:active{ + color: white; + background:#2489CE; + text-shadow: 0 0 0 #FFFFFF; +} + + +.neoCssGray { + -moz-box-shadow:inset 0px 1px 0px 0px #ffffff; + -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; + box-shadow:inset 0px 1px 0px 0px #ffffff; + background:-webkit-gradient(linear,left top,left bottom,color-stop(0.05,#f9f9f9), color-stop(1,#e9e9e9)); + background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% ); + background-color:#f9f9f9; + -webkit-border-top-left-radius:15px; + -moz-border-radius-topleft:15px; + border-top-left-radius:15px; + -webkit-border-top-right-radius:15px; + -moz-border-radius-topright:15px; + border-top-right-radius:15px; + -webkit-border-bottom-right-radius:15px; + -moz-border-radius-bottomright:15px; + border-bottom-right-radius:15px; + -webkit-border-bottom-left-radius:15px; + -moz-border-radius-bottomleft:15px; + border-bottom-left-radius:15px; + text-indent:0; + border:2px solid #dcdcdc; + display:inline-block; + font-weight:bold; + font-style:normal; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #ffffff; +} +.neoCssGray:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) ); + background:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% ); + background-color:#e9e9e9; +} +.neoCssGray:active { + position:relative; + top:1px; +} + +.neoCssBlue { + -moz-box-shadow:inset 0px 1px 0px 0px #bbdaf7; + -webkit-box-shadow:inset 0px 1px 0px 0px #bbdaf7; + box-shadow:inset 0px 1px 0px 0px #bbdaf7; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #378de5) ); + background:-moz-linear-gradient( center top, #79bbff 5%, #378de5 100% ); + background-color:#79bbff; + -webkit-border-top-left-radius:15px; + -moz-border-radius-topleft:15px; + border-top-left-radius:15px; + -webkit-border-top-right-radius:15px; + -moz-border-radius-topright:15px; + border-top-right-radius:15px; + -webkit-border-bottom-right-radius:15px; + -moz-border-radius-bottomright:15px; + border-bottom-right-radius:15px; + -webkit-border-bottom-left-radius:15px; + -moz-border-radius-bottomleft:15px; + border-bottom-left-radius:15px; + text-indent:0; + border:2px solid #84bbf3; + display:inline-block; + color:#ffffff; + font-size:15px; + font-weight:bold; + font-style:normal; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #528ecc; +} +.neoCssBlue:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #378de5), color-stop(1, #79bbff) ); + background:-moz-linear-gradient( center top, #378de5 5%, #79bbff 100% ); + background-color:#378de5; +} +.neoCssBlue:active { + position:relative; + top:1px; +} + +.neoCssPurple { + -moz-box-shadow:inset 0px 1px 0px 0px #e6cafc; + -webkit-box-shadow:inset 0px 1px 0px 0px #e6cafc; + box-shadow:inset 0px 1px 0px 0px #e6cafc; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c579ff), color-stop(1, #a341ee) ); + background:-moz-linear-gradient( center top, #c579ff 5%, #a341ee 100% ); + background-color:#c579ff; + -webkit-border-top-left-radius:15px; + -moz-border-radius-topleft:15px; + border-top-left-radius:15px; + -webkit-border-top-right-radius:15px; + -moz-border-radius-topright:15px; + border-top-right-radius:15px; + -webkit-border-bottom-right-radius:15px; + -moz-border-radius-bottomright:15px; + border-bottom-right-radius:15px; + -webkit-border-bottom-left-radius:15px; + -moz-border-radius-bottomleft:15px; + border-bottom-left-radius:15px; + text-indent:0; + border:2px solid #a946f5; + display:inline-block; + color:#ffffff; + font-size:15px; + font-weight:bold; + font-style:normal; + height:30px; + line-height:30px; + width:150px; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #8628ce; +} +.neoCssPurple:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a341ee), color-stop(1, #c579ff) ); + background:-moz-linear-gradient( center top, #a341ee 5%, #c579ff 100% ); + background-color:#a341ee; +} +.neoCssPurple:active { + position:relative; + top:1px; +} + +.neoCssGreen { + -moz-box-shadow:inset 0px 1px 0px 0px #c1ed9c; + -webkit-box-shadow:inset 0px 1px 0px 0px #c1ed9c; + box-shadow:inset 0px 1px 0px 0px #c1ed9c; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #8cb82b) ); + background:-moz-linear-gradient( center top, #9dce2c 5%, #8cb82b 100% ); + background-color:#9dce2c; + -webkit-border-top-left-radius:15px; + -moz-border-radius-topleft:15px; + border-top-left-radius:15px; + -webkit-border-top-right-radius:15px; + -moz-border-radius-topright:15px; + border-top-right-radius:15px; + -webkit-border-bottom-right-radius:15px; + -moz-border-radius-bottomright:15px; + border-bottom-right-radius:15px; + -webkit-border-bottom-left-radius:15px; + -moz-border-radius-bottomleft:15px; + border-bottom-left-radius:15px; + text-indent:0; + border:2px solid #83c41a; + display:inline-block; + color:#ffffff; + font-size:15px; + font-weight:bold; + font-style:normal; + height:30px; + line-height:30px; + width:150px; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #689324; +} +.neoCssGreen:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) ); + background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% ); + background-color:#8cb82b; +} +.neoCssGreen:active { + position:relative; + top:1px; +} + +.neoCssRed { + -moz-box-shadow:inset 0px 1px 0px 0px #f29c93; + -webkit-box-shadow:inset 0px 1px 0px 0px #f29c93; + box-shadow:inset 0px 1px 0px 0px #f29c93; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100) ); + background:-moz-linear-gradient( center top, #fe1a00 5%, #ce0100 100% ); + /*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100');*/ + background-color:#fe1a00; + -webkit-border-top-left-radius:15px; + -moz-border-radius-topleft:15px; + border-top-left-radius:15px; + -webkit-border-top-right-radius:15px; + -moz-border-radius-topright:15px; + border-top-right-radius:15px; + -webkit-border-bottom-right-radius:15px; + -moz-border-radius-bottomright:15px; + border-bottom-right-radius:15px; + -webkit-border-bottom-left-radius:15px; + -moz-border-radius-bottomleft:15px; + border-bottom-left-radius:15px; + text-indent:0; + border:2px solid #d83526; + display:inline-block; + font-size:15px; + font-weight:bold; + font-style:normal; + height:30px; + line-height:30px; + width:150px; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #b23e35; +} +.neoCssRed:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ce0100), color-stop(1, #fe1a00) ); + background:-moz-linear-gradient( center top, #ce0100 5%, #fe1a00 100% ); + background-color:#ce0100; +}.neoCssRed:active { + position:relative; + top:1px; +} + +.neoCssPink { + -moz-box-shadow:inset 0px 1px 0px 0px #fbafe3; + -webkit-box-shadow:inset 0px 1px 0px 0px #fbafe3; + box-shadow:inset 0px 1px 0px 0px #fbafe3; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ff5bb0), color-stop(1, #ef027d) ); + background:-moz-linear-gradient( center top, #ff5bb0 5%, #ef027d 100% ); + background-color:#ff5bb0; + -webkit-border-top-left-radius:15px; + -moz-border-radius-topleft:15px; + border-top-left-radius:15px; + -webkit-border-top-right-radius:15px; + -moz-border-radius-topright:15px; + border-top-right-radius:15px; + -webkit-border-bottom-right-radius:15px; + -moz-border-radius-bottomright:15px; + border-bottom-right-radius:15px; + -webkit-border-bottom-left-radius:15px; + -moz-border-radius-bottomleft:15px; + border-bottom-left-radius:15px; + text-indent:0; + border:2px solid #ee1eb5; + display:inline-block; + color:#ffffff; + font-size:15px; + font-weight:bold; + font-style:normal; + height:30px; + line-height:30px; + width:150px; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #c70067; +} +.neoCssPink:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ef027d), color-stop(1, #ff5bb0) ); + background:-moz-linear-gradient( center top, #ef027d 5%, #ff5bb0 100% ); + background-color:#ef027d; +} +.neoCssPink:active { + position:relative; + top:1px; +} \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/css/bulles.css b/scorm-s-integrer-ds-equipe/css/bulles.css new file mode 100644 index 0000000..2f3b70a --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/bulles.css @@ -0,0 +1,136 @@ + +.bullewhite0 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bullewhite.png"); + background-position: left top; + background-repeat: no-repeat; +} + +.bullewhite1 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bullewhite.png"); + background-position: right top; + background-repeat: no-repeat; +} + +.bullewhite2 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bullewhite.png"); + background-position: left bottom; + background-repeat: no-repeat; +} + +.bullewhite3 { + position:absolute; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("../fx/bullewhite.png"); + background-position: right bottom; + background-repeat: no-repeat; +} + +/* BULLE BEIGE */ +.bullebeige0 { + position:absolute; + border: 0px solid red; + padding: 1px;margin: 1px; + background-image:url("../fx/bullebeige.png"); + background-position: left top; + background-repeat: no-repeat; +} +.bullebeige1 { + position:absolute; + border: 0px solid red; + padding: 1px;margin: 1px; + background-image:url("../fx/bullebeige.png"); + background-position: right top; + background-repeat: no-repeat; +} +.bullebeige2 { + position:absolute; + border: 0px solid red; + padding: 1px;margin: 1px; + background-image:url("../fx/bullebeige.png"); + background-position: left bottom; + background-repeat: no-repeat; +} +.bullebeige3 { + position:absolute; + border: 0px solid red; + padding: 1px;margin: 1px; + background-image:url("../fx/bullebeige.png"); + background-position: right bottom; + background-repeat: no-repeat; +} + +/* BULLE BLUE */ +.bulleblue0 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleblue.png"); + background-position: left top; + background-repeat: no-repeat; +} +.bulleblue1 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleblue.png"); + background-position: right top; + background-repeat: no-repeat; +} +.bulleblue2 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleblue.png"); + background-position: left bottom; + background-repeat: no-repeat; +} +.bulleblue3 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleblue.png"); + background-position: right bottom; + background-repeat: no-repeat; +} + +/* BULLE ANOTE */ +.bulleanote0 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleanote.png"); + background-position: left top; + background-repeat: no-repeat; +} +.bulleanote1 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleanote.png"); + background-position: right top; + background-repeat: no-repeat; +} +.bulleanote2 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleanote.png"); + background-position: left bottom; + background-repeat: no-repeat; +} +.bulleanote3 { + position:absolute; + border: 0px solid red;padding: 1px;margin: 1px; + background-image:url("../fx/bulleanote.png"); + background-position: right bottom; + background-repeat: no-repeat; +} + + diff --git a/scorm-s-integrer-ds-equipe/css/cssadd.css b/scorm-s-integrer-ds-equipe/css/cssadd.css new file mode 100644 index 0000000..5f28270 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/cssadd.css @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/css/flux.css b/scorm-s-integrer-ds-equipe/css/flux.css new file mode 100644 index 0000000..8e60e0f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/flux.css @@ -0,0 +1,107 @@ + +.contentflux{ + width:400px; + height:300px; + overflow:hidden; + position:relative; +} + +.footerflux{ + overflow:hidden; + position:absolute; + left:0px; + bottom:2px; +} + +.ray5{ + -moz-border-radius: 5px; + -khtml-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; +} + + + +.contentinner{ + position:relative; + left:1%; + top:1%; + width:98%; + height:98%; +} + +.box-shadow { + box-shadow: #969696 3px 3px 3px; + -moz-box-shadow: 2px 2px 3px #969696; /* for Firefox 3.5+ */ + -webkit-box-shadow: 2px 2px 3px #969696; /* for Safari and Chrome */ + filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=145, Strength=2); +} + +.titreflux{ + width: 95%; + margin: 0px; + margin-left: 6px; + margin-top: 7px; + padding: 1px; + font-weight: bold; +} + +.mini_img_flux{ + border:0px dotted pink; + float:right; + margin:2px; + width: 34%; + background-position: center; + background-repeat: no-repeat; + margin-left: 3px; + margin-top: 3px; +} + +.full_img_flux{ + border:0px dotted pink; + float:right; + margin:2px; + width: 40%; + background-position: center; + background-repeat: no-repeat; + margin-left: 3px; + margin-top: 3px; +} + + +.contenuflux{ + border:0px dotted gray; + width: 95%; + height: 80%; + margin-left: 4px; + overflow:hidden; +} + +.contenuflux p{ + margin-left: 0px; + margin : 1px; + padding : 1px; +} + + +.contenufluxfull{ + border:0px dotted gray; + width: 97%; + height: 90%; + margin-left: 4px; + overflow:hidden; +} + +.contenufluxfull p{ + margin-left: 0px; + margin : 1px; + padding : 1px; +} + +.loadslide{ + position:absolute; + left :50%; + top:50%; + margin-left: -21px; + margin-top : -6px; +} \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/css/fondbtn.jpg b/scorm-s-integrer-ds-equipe/css/fondbtn.jpg new file mode 100644 index 0000000..a672fd0 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/fondbtn.jpg differ diff --git a/scorm-s-integrer-ds-equipe/css/fullscreen.png b/scorm-s-integrer-ds-equipe/css/fullscreen.png new file mode 100644 index 0000000..ae6fb2d Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/fullscreen.png differ diff --git a/scorm-s-integrer-ds-equipe/css/glow.png b/scorm-s-integrer-ds-equipe/css/glow.png new file mode 100644 index 0000000..b847022 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/glow.png differ diff --git a/scorm-s-integrer-ds-equipe/css/glow2.png b/scorm-s-integrer-ds-equipe/css/glow2.png new file mode 100644 index 0000000..fdd4eee Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/glow2.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/bg-blue.png b/scorm-s-integrer-ds-equipe/css/icons/bg-blue.png new file mode 100644 index 0000000..d200fab Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/bg-blue.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/cross.png b/scorm-s-integrer-ds-equipe/css/icons/cross.png new file mode 100644 index 0000000..3bf7cfd Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/cross.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/docu.png b/scorm-s-integrer-ds-equipe/css/icons/docu.png new file mode 100644 index 0000000..c9deee8 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/docu.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/gear.png b/scorm-s-integrer-ds-equipe/css/icons/gear.png new file mode 100644 index 0000000..94d67d4 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/gear.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/home.png b/scorm-s-integrer-ds-equipe/css/icons/home.png new file mode 100644 index 0000000..dda4dba Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/home.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon01.png b/scorm-s-integrer-ds-equipe/css/icons/icon01.png new file mode 100644 index 0000000..711902f Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon01.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon02.png b/scorm-s-integrer-ds-equipe/css/icons/icon02.png new file mode 100644 index 0000000..3306141 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon02.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon03.png b/scorm-s-integrer-ds-equipe/css/icons/icon03.png new file mode 100644 index 0000000..9397735 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon03.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon04.png b/scorm-s-integrer-ds-equipe/css/icons/icon04.png new file mode 100644 index 0000000..f185739 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon04.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon05.png b/scorm-s-integrer-ds-equipe/css/icons/icon05.png new file mode 100644 index 0000000..4301d43 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon05.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon06.png b/scorm-s-integrer-ds-equipe/css/icons/icon06.png new file mode 100644 index 0000000..27fa0f3 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon06.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon07.png b/scorm-s-integrer-ds-equipe/css/icons/icon07.png new file mode 100644 index 0000000..86122a8 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon07.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon08.png b/scorm-s-integrer-ds-equipe/css/icons/icon08.png new file mode 100644 index 0000000..09ad4ad Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon08.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon09.png b/scorm-s-integrer-ds-equipe/css/icons/icon09.png new file mode 100644 index 0000000..38e9151 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon09.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon10.png b/scorm-s-integrer-ds-equipe/css/icons/icon10.png new file mode 100644 index 0000000..d6d8a88 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon10.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/icon11.png b/scorm-s-integrer-ds-equipe/css/icons/icon11.png new file mode 100644 index 0000000..484b7aa Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/icon11.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/infos.png b/scorm-s-integrer-ds-equipe/css/icons/infos.png new file mode 100644 index 0000000..5df41ad Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/infos.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/link45.png b/scorm-s-integrer-ds-equipe/css/icons/link45.png new file mode 100644 index 0000000..8e6b311 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/link45.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/link90.png b/scorm-s-integrer-ds-equipe/css/icons/link90.png new file mode 100644 index 0000000..f0b0010 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/link90.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/listblackgraymid.png b/scorm-s-integrer-ds-equipe/css/icons/listblackgraymid.png new file mode 100644 index 0000000..bdf9bcb Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/listblackgraymid.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/medicpack.png b/scorm-s-integrer-ds-equipe/css/icons/medicpack.png new file mode 100644 index 0000000..46d3cfd Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/medicpack.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/next.png b/scorm-s-integrer-ds-equipe/css/icons/next.png new file mode 100644 index 0000000..9c8ff2e Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/next.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/nextvalid.png b/scorm-s-integrer-ds-equipe/css/icons/nextvalid.png new file mode 100644 index 0000000..8bfd0fb Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/nextvalid.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/play.png b/scorm-s-integrer-ds-equipe/css/icons/play.png new file mode 100644 index 0000000..e8eb322 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/play.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/playstop.png b/scorm-s-integrer-ds-equipe/css/icons/playstop.png new file mode 100644 index 0000000..5ca593d Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/playstop.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/prev.png b/scorm-s-integrer-ds-equipe/css/icons/prev.png new file mode 100644 index 0000000..17811a4 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/prev.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/questions.png b/scorm-s-integrer-ds-equipe/css/icons/questions.png new file mode 100644 index 0000000..71da88f Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/questions.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/star.png b/scorm-s-integrer-ds-equipe/css/icons/star.png new file mode 100644 index 0000000..a3449aa Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/star.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/zcontrol.png b/scorm-s-integrer-ds-equipe/css/icons/zcontrol.png new file mode 100644 index 0000000..61291c9 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/zcontrol.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/zlight.png b/scorm-s-integrer-ds-equipe/css/icons/zlight.png new file mode 100644 index 0000000..2803247 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/zlight.png differ diff --git a/scorm-s-integrer-ds-equipe/css/icons/zsound.png b/scorm-s-integrer-ds-equipe/css/icons/zsound.png new file mode 100644 index 0000000..bcffc43 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/icons/zsound.png differ diff --git a/scorm-s-integrer-ds-equipe/css/ludiScapeLoad.gif b/scorm-s-integrer-ds-equipe/css/ludiScapeLoad.gif new file mode 100644 index 0000000..88a52f5 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/ludiScapeLoad.gif differ diff --git a/scorm-s-integrer-ds-equipe/css/ludiScapeLoad.png b/scorm-s-integrer-ds-equipe/css/ludiScapeLoad.png new file mode 100644 index 0000000..949dcdb Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/ludiScapeLoad.png differ diff --git a/scorm-s-integrer-ds-equipe/css/ludiscape.css b/scorm-s-integrer-ds-equipe/css/ludiscape.css new file mode 100644 index 0000000..0685df8 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/ludiscape.css @@ -0,0 +1,4001 @@ +body,.main,#main{font-family:"Verdana";} + +body{ +position:absolute; +padding:0px; +margin:0px; +border:solid 0px blue; +left:0px; +right:0px; +top:0px; +bottom:0px; +padding:0; +margin:0; +background-attachment: fixed; +font-size-adjust: none; +-webkit-text-size-adjust: none !important; +} +body{ +touch-action: none; +-ms-touch-action: none !important; /* DISABLE DOUBLE-TAP-ZOOM */ +-ms-content-zooming: none; +-ms-scroll-rails: none; +font-size-adjust: none; +} +#main{ +touch-action: none; +-ms-touch-action: none !important;/* DISABLE DOUBLE-TAP-ZOOM */ +-ms-content-zooming: none; +-ms-scroll-rails: none; +font-size-adjust: none; +background:white; +} +.wrap90{ +transform : rotate(-90deg); +transform-origin :left top; +position : absolute; +} +@-webkit-viewport{ +width : device-width; +} +@-moz-viewport{ +width : device-width; +} +@-ms-viewport{ +width : device-width; +zoom : 1; +max-zoom : 1; +min-zoom : 1; +} +@-o-viewport{ +width: device-width; +} +@viewport{ +width: device-width; +} +.bodyflou{ +color:transparent; +text-shadow:0 0 5px #333; +filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=2)\9 !important; +-ms-filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=2)\9 !important; +opacity: 1\9 !important; +} +#globalcurtainanim , #globalcurtainanim2{ +background-position:center center; +background-size:100% 100%; +background-size:cover; +-webkit-background-size: cover; +-moz-background-size: cover; +-o-background-size: cover; +background-size: cover; +background-repeat:no-repeat; +position:absolute; +z-index : 102; +} +/*{UOD}*/ +.selecttcm{ +-webkit-appearance: none; +font-style: italic; +} +.textarea{ +position:absolute; +border: 1px solid black; +padding:0px; +margin:0px; +} +.textarea td{ +padding:0px; +margin:0px; +} +.unselectable{ +-moz-user-select: none; /* for FireFox */ +-webkit-user-select: none; /* for Chrome and Safari */ +-khtml-user-select: none; /* probably old webkit browsers, but new support it too */ +user-select: none; /* for future CSS3 compliant browsers */ +} +input[type="text"]{ +padding: 1px 0px; +-webkit-appearance: textfield; +padding: 1px; +background-color: white; +border-image: initial; +-webkit-rtl-ordering: logical; +-webkit-user-select: text; +cursor: auto; +border: 1px solid black; +} +p{ +padding:5px; +margin:0px; +} +a{ +outline:none; +} +img{ +outline:none; +} +img{ +-webkit-user-select: none; +-khtml-user-select: none; +-moz-user-select: none; +-o-user-select: none; +user-select: none; +} +a{ +-webkit-user-select: none; +-khtml-user-select: none; +-moz-user-select: none; +-o-user-select: none; +user-select: none; +} +.labelconn{ +color:white; +font-size:18px; +} +.labelconnblack{ +color:black; +font-size:16px; +} +.labelconntitle{ +color:black; +font-size:18px; +} +.inputconn{ +padding: 1px 0px; +-webkit-appearance: textfield; +padding: 1px; +background-color: white; +border-image: initial; +-webkit-rtl-ordering: logical; +-webkit-user-select: text; +cursor: auto; +width:95%; +max-width: 250px; +border: 1px solid black; +font-size:18px; +} +table{ +padding:0; +margin:0; +} +.bloc{ +position:absolute; +width:8px; +height:8px; +top:0px; +left:0px; +border:solid 0px red; +} +#loadbloc{ +position : absolute; +width : 60px; +height : 60px; +top : 50%; +left : 50%; +margin-left : -30px; +margin-top : -32px; +z-index:0; +color: gray; +font-size: 50px; +text-align:center; +} +.loadludi{ +position : absolute; +width : 250px; +height : 95px; +top : 50%; +left : 50%; +margin-left : -125px; +margin-top : -50px; +border-radius: 5px; +z-index:2000; +font-size: 10px; +text-align:center; +border:solid 2px #708090; +background-color: white; +background-position: 35px 18px; +background-repeat: no-repeat; +} +.minibar{ +position : absolute; +left:35px; +top:70px; +width : 180px; +height : 4px; +border-radius: 2px; +border:solid 1px gray; +overflow:hidden; +} +.evolminibar{ +position : absolute; +left:0px; +top:0px; +width : 2px; +height : 5px; +background-color:#8CBEE3; +} +.loadludi2{ +position : absolute; +width : 100%; +height : 210px; +top : 50%; +left : 0%; +right : 0%; +margin-left : 0px; +margin-top : -105px; +border-radius: 5px; +z-index:2000; +font-size: 10px; +text-align:center; +border:solid 2px #708090; +background-color: white; +background-position: center 55px; +background-repeat: no-repeat; +} +.minibar2{ +position : absolute; +left:50%; +bottom:50px; +width : 180px; +margin-left:-90px; +height : 20px; +border-radius: 10px; +border:solid 1px gray; +overflow:hidden; +} +.evolminibar2{ +position : absolute; +left:0px; +top:0px; +width : 2px; +height : 21px; +background-color:#8CBEE3; +} +.domobject{ +position:absolute; +z-index:5; +} +#main{ +background-color : #F2F2F2; +background-repeat:no-repeat; +background-position:center; +overflow : hidden; +} +#loaddiv{ +background-repeat:no-repeat; +background-position:center; +opacity:0.6; +filter:alpha(opacity=60);/* For IE8 and earlier */ +overflow : hidden; +z-index : 100; +} +#loaddivbarre{ +background-color : transparent; +background-repeat:no-repeat; +background-position:center; +background-image:url("ajax_loader_blue.gif"); +overflow : hidden; +z-index : 100; +} +.textshadow{ +text-shadow: gray 0.1em 0.1em 0.2em; +} +.gradient_blue{ +/*http://www.colorzilla.com/gradient-editor/*/ +background: #e4f5fc; /* Old browsers */ +background: -moz-linear-gradient(top, #e4f5fc 0%, #bfe8f9 50%, #9fd8ef 51%, #2ab0ed 100%); /* FF3.6+ */ +background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4f5fc), color-stop(50%,#bfe8f9), color-stop(51%,#9fd8ef), color-stop(100%,#2ab0ed)); /* Chrome,Safari4+ */ +background: -webkit-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%); /* Chrome10+,Safari5.1+ */ +background: -o-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%); /* Opera 11.10+ */ +background: -ms-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%); /* IE10+ */ +background: linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%); /* W3C */ +filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4f5fc', endColorstr='#2ab0ed',GradientType=0 ); /* IE6-9 */ +} +.gradient_gray{ +background: #e2e2e2; /* Old browsers */ +background: -moz-linear-gradient(top, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%); /* FF3.6+ */ +background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2e2e2), color-stop(50%,#dbdbdb), color-stop(51%,#d1d1d1), color-stop(100%,#fefefe)); /* Chrome,Safari4+ */ +background: -webkit-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* Chrome10+,Safari5.1+ */ +background: -o-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* Opera 11.10+ */ +background: -ms-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* IE10+ */ +background: linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* W3C */ +filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#fefefe',GradientType=0 ); /* IE6-9 */ +} +.gradient_purple{ +background: #ebe9f9; /* Old browsers */ +background: -moz-linear-gradient(top, #ebe9f9 0%, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%); /* FF3.6+ */ +background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebe9f9), color-stop(50%,#d8d0ef), color-stop(51%,#cec7ec), color-stop(100%,#c1bfea)); /* Chrome,Safari4+ */ +background: -webkit-linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* Chrome10+,Safari5.1+ */ +background: -o-linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* Opera 11.10+ */ +background: -ms-linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* IE10+ */ +background: linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* W3C */ +filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebe9f9', endColorstr='#c1bfea',GradientType=0 ); /* IE6-9 */ +} +.gradient_white{ +background: #ffffff; /* Old browsers */ +background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%); /* FF3.6+ */ +background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#f3f3f3), color-stop(51%,#ededed), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */ +background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Chrome10+,Safari5.1+ */ +background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Opera 11.10+ */ +background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* IE10+ */ +background: linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* W3C */ +filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */ +} +.gradient_green{ +background: #e6f0a3; /* Old browsers */ +background: -moz-linear-gradient(top, #e6f0a3 0%, #d2e638 50%, #c3d825 51%, #dbf043 100%); /* FF3.6+ */ +background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6f0a3), color-stop(50%,#d2e638), color-stop(51%,#c3d825), color-stop(100%,#dbf043)); /* Chrome,Safari4+ */ +background: -webkit-linear-gradient(top, #e6f0a3 0%,#d2e638 50%,#c3d825 51%,#dbf043 100%); /* Chrome10+,Safari5.1+ */ +background: -o-linear-gradient(top, #e6f0a3 0%,#d2e638 50%,#c3d825 51%,#dbf043 100%); /* Opera 11.10+ */ +background: -ms-linear-gradient(top, #e6f0a3 0%,#d2e638 50%,#c3d825 51%,#dbf043 100%); /* IE10+ */ +background: linear-gradient(top, #e6f0a3 0%,#d2e638 50%,#c3d825 51%,#dbf043 100%); /* W3C */ +filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6f0a3', endColorstr='#dbf043',GradientType=0 ); /* IE6-9 */ +} +.gradient_orange{ +background: rgb(252,234,187); /* Old browsers */ +background: -moz-linear-gradient(top, rgba(252,234,187,1) 0%, rgba(252,205,77,1) 50%, rgba(248,181,0,1) 51%, rgba(251,223,147,1) 100%); /* FF3.6+ */ +background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,234,187,1)), color-stop(50%,rgba(252,205,77,1)), color-stop(51%,rgba(248,181,0,1)), color-stop(100%,rgba(251,223,147,1))); /* Chrome,Safari4+ */ +background: -webkit-linear-gradient(top, rgba(252,234,187,1) 0%,rgba(252,205,77,1) 50%,rgba(248,181,0,1) 51%,rgba(251,223,147,1) 100%); /* Chrome10+,Safari5.1+ */ +background: -o-linear-gradient(top, rgba(252,234,187,1) 0%,rgba(252,205,77,1) 50%,rgba(248,181,0,1) 51%,rgba(251,223,147,1) 100%); /* Opera 11.10+ */ +background: -ms-linear-gradient(top, rgba(252,234,187,1) 0%,rgba(252,205,77,1) 50%,rgba(248,181,0,1) 51%,rgba(251,223,147,1) 100%); /* IE10+ */ +background: linear-gradient(top, rgba(252,234,187,1) 0%,rgba(252,205,77,1) 50%,rgba(248,181,0,1) 51%,rgba(251,223,147,1) 100%); /* W3C */ +filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fceabb', endColorstr='#fbdf93',GradientType=0 ); /* IE6-9 */ +} +.round{ +text-align:center; +border-radius: 0.1em; +-moz-border-radius: 0.1em; +-webkit-border-radius: 0.1em; +} +.preloadimg{ +position:absolute; +left:2px; +bottom:2px; +width:30px; +height:30px; +} +.preloadclock{ +position:absolute; +right:2px; +top:2px; +width:30px; +height:30px; +} +.qcmn{ +background : url("../fx/transparent.png") top center; +min-height:10px; +min-width:10px; +} +.qcmx{ +background : url("../fx/transparent.png") top center; +min-height:10px; +min-width:10px; +} +.qcmcoche{ +position : relative; +} +.cochecase{ +z-index:4; +font-weight:bold; +text-align:center; +} +.cocheimg{ +position:absolute; +left : 0px; +top : 0px; +/*opacity:0.4; +filter:alpha(opacity=40);*/ +} +.barresty{ +border:solid 1px gray; +-moz-border-radius: 25px; +-moz-border-radius: 25px; +-khtml-border-radius: 25px; +-khtml-border-radius: 25px; +-webkit-border-radius: 25px; +-webkit-border-radius: 25px; +border-radius: 25px; +border-radius: 25px; +} +.libellegauge{ +text-align:right; +} +.notegauge{ +position:absolute; +top:0px; +right:0px; +margin-right:50px; +font-size:10; +} +.btnslideright{ +position:absolute; +top:0px; +left:0px; +background:url("../fx/rightslide.png") center center; +width:36px; +height:100px; +cursor:pointer; +z-index:4; +} +.btnslideleft{ +position:absolute; +top:0px; +left:0px; +background:url("../fx/leftslide.png") center center; +width:36px; +height:100px; +cursor:pointer; +z-index:4; +} +.instaplan{ +overflow:hidden; +} +.instaplantitle{ +position:absolute; +right : 0px; +bottom : 0px; +width:120px; +height:15px; +padding:2px; +text-align:center; +background:black; +border: solid 1px gray; +font-size:12px; +color:white; +z-index:1000000; +} +#cadreheader{ +background-image:url("glow.png"); +background-position: center top; +background-repeat:no-repeat; +} +#cadrefooter{ +background-image:url("glow2.png"); +background-position: center top; +background-repeat:no-repeat; +} +.autm{ +width : 98%; +display:block; +padding:0.2em; +padding-left:1%; +padding-right:0; +margin:0; +border-bottom: solid 1px gray; +text-decoration:none; +border-radius:0.3em; +} +.autm:hover{ +font-weight:bold; +} +.rptColHorizon{ +position : relative; +border-top: solid 1px gray; +width : 100%; +height:20%; +font-size: 8px; +} +#xapiTitle{ +display:none; +} +#xapiActivityID{ +display:none; +} +a.tooltipsred{ +position: absolute; +display: inline; +} +a.tooltipsred span{ +position: absolute; +width:140px; +color: #FFFFFF; +background: #FF1C42; +height: 30px; +line-height: 30px; +text-align: center; +visibility: visible; +border-radius: 6px; +opacity: 0.8; +bottom: 30px; +left: 50%; +margin-left: -76px; +z-index: 999; +} +a.tooltipsred span:after{ +content: ''; +position: absolute; +top: 100%; +left: 50%; +margin-left: -8px; +width: 0; height: 0; +border-top: 8px solid #FF1C42; +border-right: 8px solid transparent; +border-left: 8px solid transparent; +} +a:hover.tooltipsred span{ +visibility: visible; +opacity: 0.8; +bottom: 30px; +left: 50%; +margin-left: -76px; +z-index: 999; +} +a.tooltipsgreen{ +position: absolute; +display: inline; +} +a.tooltipsgreen span{ +position: absolute; +width:140px; +color: #000000; +background: #7DFF26; +height: 30px; +line-height: 30px; +text-align: center; +visibility: visible; +border-radius: 6px; +opacity: 0.8; +bottom: 30px; +left: 50%; +margin-left: -76px; +z-index: 999; +} +a.tooltipsgreen span:after{ +content: ''; +position: absolute; +top: 100%; +left: 50%; +margin-left: -8px; +width: 0; height: 0; +border-top: 8px solid #7DFF26; +border-right: 8px solid transparent; +border-left: 8px solid transparent; +} +a:hover.tooltipsgreen span{ +visibility: visible; +opacity: 0.8; +bottom: 30px; +left: 50%; +margin-left: -76px; +z-index: 999; +} +.divopacover{ +position:absolute; +left :0px; +top:0px; +right: 0px; +bottom: 0px; +background: #6E6E6E; +opacity : 0.6; +display : none; +z-index : 3; +} +.divwindowsligth{ +position:absolute; +left :0px; +top:0px; +width:450px; +height:450px; +background: white; +overflow: hidden; +opacity : 0; +display : none; +border:1px solid #585858; +border-radius:5px; +z-index : 3; +} +.divwindowsligthclose{ +position: absolute; +background-image:url("../fx/closeminifenetre.png"); +background-position: center center; +background-repeat:no-repeat; +cursor:pointer; +top: 0px; +bottom: 0px; +right: 0px; +width: 32px; +} +.videonc::-webkit-media-controls +{ +display:none !important; +} +.mat-shadows-a{ +box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +.mat-shadows-b{ +box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); +transition: all 0.3s cubic-bezier(.25,.8,.25,1); +} +.mat-shadows-b:hover{ +box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); +} +.slidevolde{ +margin-top:-1000px; +} +/*button*/ +.mat-slide{ +transition: all .5s ease-out; +} +.mat-button{ +position : absolute; +color: #FFF; +width: 56px; +height: 56px; +font-size: 28px; +border-radius: 50%; +box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.3); +overflow: hidden; +cursor: pointer; +vertical-align: middle; +-webkit-user-select: none; +-moz-user-select: none; +-ms-user-select: none; +user-select: none; +border: none; +user-select: none; +white-space: nowrap; +outline: none; +align-items: flex-start; +transition: all .3s ease-out; +} +.mat-button, .mat-button::after, .mat-button::before{ +-ms-box-sizing: border-box; +-o-box-sizing: border-box; +box-sizing: border-box; +} +.mat-button:hover{ +box-shadow: 0 4px 11px 0px rgba(0, 0, 0, 0.375); +background-color: #23b9fc; +} +.material-icon{ +position : absolute; +left:0px; +top:0px; +right:0px; +bottom:0px; +background-image: url(img/right-button.png); +background-position: center center; +background-repeat: no-repeat; +} +/*flip card*/ +/* entire container, keeps perspective */ +.flipcard-container{ +perspective: 1000px; +-ms-perspective: 1000px; +} +/* flip the pane when hovered */ +.flipcard-container.flipcard-hover .flipcard-flipper{ +transform: rotateY(180deg); +-ms-transform: rotateY(180deg); +-webkit-transform: rotateY(180deg); +} +.flipcard-question{ +background-image: url(question_mark.png); +background-position: center center; +background-repeat: no-repeat; +} +.flipcard-image{ +background-size: contain; +background-repeat: no-repeat; +background-position: center center; +} +.flipcard-container{ +position:absolute; +left:50px; +top:50px; +width: 320px; +height: 320px; +} +.flipcard-front,.flipcard-back{ +position: relative; +width: 320px; +height: 320px; +text-align: center; +cursor:pointer; +border-radius:5px; +overflow: hidden; +background-color:white; +} +.flipcard-front{ +border:solid 1px #D8D8D8; +} +.flipcard-back{ +border:solid 1px gray; +} +/* flip speed goes here */ +.flipcard-flipper{ +transition: 0.7s; +transform-style: preserve-3d; +-ms-transition: 0.7s; +-ms-transform-style: preserve-3d; +position: relative; +} +/* hide back of pane during swap */ +.flipcard-front, .flipcard-back{ +backface-visibility: hidden; +position: absolute; +top: 0; +left: 0; +} +/* front pane, placed above back */ +.flipcard-front{ +z-index: 2; +transform: rotateY(0deg); +-ms-transform: rotateY(0deg); +} +/* back, initially hidden pane */ +.flipcard-back{ +transform: rotateY(180deg); +-ms-transform: rotateY(180deg); +} +/* TEXTAREA */ +.textareabloc{ +position:relative; +left:0px; +top:0px; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("write.gif"); +background-position: right bottom; +background-repeat: no-repeat; +} +#fullscreen{ +position:fixed; +right:0px; +bottom:0px; +width : 50px; +height : 50px; +cursor : pointer; +background-image:url("fullscreen.png"); +} +#fullscreen-no{ +display : none; +} +/* MESSAGE BOX Right */ +#flatrightmessage{ +position : absolute; +right :-60%; +top : 5%; +width : 35%; +min-width : 400px; +background: white; +border : solid 1px gray; +overflow:hidden; +display:none; +z-index : 6; +} +.iconrightmessageinner{ +position:absolute; +top:0; +bottom:0px; +width : 60px; +} +.rightmessageOk{ +background:#A5DF00; +background-image:url("../fx/valid.png"); +background-position: center center; +background-repeat: no-repeat; +} +.rightmessageKo{ +background:#FA5858; +background-image:url("../fx/wrong.png"); +background-position: center center; +background-repeat: no-repeat; +} +.supprightmessage{ +position:absolute; +right:0px; +top:0; +bottom:0px; +width : 30px; +cursor:pointer; +background-image:url("../fx/cross.png"); +background-position: center center; +background-repeat: no-repeat; +} +.flatrightmessageinner{ +position:relative; +text-align: center; +margin-left:65px; +margin-top:10px; +margin-bottom:10px; +margin-right: 30px; +font-size :17px; +line-height: 30px; +} +/* MESSAGE BOX CENTER */ +#centermessage{ +position:absolute; +left :50%; +top:50%; +border-radius: 10px; +background: #F5D0A9; +background-image: -moz-linear-gradient(#fff, #FAAC58); +background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #FAAC58),color-stop(1, #fff)); +-moz-border-radius: 35px; +border-width: 1px; +border-style: solid; +border-color: #c4d9df #a4c3ca #83afb7; +width : 440px; +height: 60px; +margin-left : -220px; +margin-top : -30px; +z-index:1000; +overflow: hidden; +-webkit-transition: all 0.5s; +transition: all 0.5s; +} +#centermessageinner{ +position:absolute; +border-radius: 4px; +left :7px; +top :7px; +bottom :7px; +right :7px; +border: 1px solid #a4c3ca; +background: #f1f1f1; +-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +overflow: hidden; +} +#centermessageinner:after{ +content:"."; +display:block; +clear:both; +} +#centermessageinner p{ +text-align :center; +margin: 5px; +padding: 5px; +font-size :18px; +} +/* PARAMETRES */ +#parametrebox{ +position:absolute; +left :50%; +top:50%; +border-radius: 10px; +background: #01A9DB; +background-image: -moz-linear-gradient(#fff, #01A9DB); +background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #01A9DB),color-stop(1, #fff)); +-moz-border-radius: 35px; +border-width: 1px; +border-style: solid; +border-color: #c4d9df #a4c3ca #83afb7; +width : 440px; +height: 440px; +margin-left : -220px; +margin-top : -220px; +z-index:1000; +overflow: hidden; +display : none; +} +#parametrebox h1{ +text-align : center; +font-size : 20px; +} +#parametreinner{ +position:absolute; +border-radius: 5px; +left :8px; +top :8px; +bottom :8px; +right :8px; +font-size : 24px; +border: 1px solid #a4c3ca; +background: white; +-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +overflow: hidden; +} +#parametreinner table{ +margin-top : 40px; +margin-left : 30px; +} +#parametreOpac{ +position: absolute; +left : 0%; +top : 0%; +width : 100%; +height : 100%; +background: gray; +opacity : 0.5; +display : none; +z-index:999; +} +#parametreOpacGesture{ +position: absolute; +left : 0%; +top : 0%; +width : 100%; +height : 100%; +background: white; +opacity : 0.6; +background-image:url("../fx/bouton_suivant.png"); +background-position: center center; +background-repeat: no-repeat; +cursor:pointer; +z-index:999; +} +/*Select QCM Line*/ +.selectqcmline{ +text-decoration: none; +cursor:pointer; +} +.selectqcmline:hover,.selectqcmline:active{ +text-decoration: underline; +} +/*LEXIQUE*/ +.lexique{ +color : #0B3861; +font-weight : bold; +cursor : pointer; +} +.lexique:hover{ +color : #DF3A01; +font-weight : bold; +cursor : pointer; +} +.lexiqueTitle{ +font-weight : bold; +border-bottom : solid 1px black +} +.lexiqueContent{ +position : relative; +left : 5px; +top : 5px; +width : 190px; +height : 150px; +} +.lexiqueContentLarg{ +position : relative; +left : 5px; +top : 5px; +width : 290px; +height : 290px; +overflow : auto; +} +.lexiqueBox{ +position : absolute; +background : #e0f5ff; +border : 1px solid #0c0e0f; +width : 200px; +height : 200px; +z-index : 11; +display : none; +border-radius: 3px; +} +.lexiqueBox:after, .lexiqueBox:before{ +bottom: 100%; +left: 80px; +border: solid transparent; +content: " "; +height: 0; +width: 0; +position: absolute; +pointer-events: none; +} +.lexiqueBox:after{ +border-color: rgba(224, 245, 255, 0); +border-bottom-color: #e0f5ff; +border-width: 10px; +margin-left: -10px; +} +.lexiqueBox:before{ +border-color: rgba(12, 14, 15, 0); +border-bottom-color: #0c0e0f; +border-width: 11px; +margin-left: -11px; +} +.lexiqueBoxBottom{ +position: absolute; +background: #e0f5ff; +border: 1px solid #0c0e0f; +width : 200px; +height : 200px; +z-index : 11; +display : none; +border-radius: 3px; +} +.lexiqueBoxBottom:after, .lexiqueBoxBottom:before{ +top: 100%; +left: 80px; +border: solid transparent; +content: " "; +height: 0; +width: 0; +position: absolute; +pointer-events: none; +} +.lexiqueBoxBottom:after{ +border-color: rgba(224, 245, 255, 0); +border-top-color: #e0f5ff; +border-width: 10px; +margin-left: -10px; +} +.lexiqueBoxBottom:before{ +border-color: rgba(12, 14, 15, 0); +border-top-color: #0c0e0f; +border-width: 11px; +margin-left: -11px; +} +.addLexique{ +position : absolute; +right:0px; +bottom:0px; +width : 60px; +height :60px; +background-image:url("../fx/infos-plus.png"); +background-position: center center; +background-repeat: no-repeat; +cursor:pointer; +} +.delLexique{ +position : absolute; +right:-20px; +top:-20px; +width : 40px; +height :40px; +background-image:url("../fx/close-mini.png"); +background-position: center center; +background-repeat: no-repeat; +cursor:pointer; +z-index : 12; +display:none; +} +/* RAPPORT ECRIT FIN DE MODULE */ +.errorspan{ +color : red; +text-decoration : line-through; +font-weight : italic; +} +.goodspan{ +color : #74DF00; +} +.errorMark{ +color : red; +font-weight : bold; +} +.errorMarkDiv{ +position : absolute; +color : red; +font-size:20px; +font-weight : bold; +} +.goodMarkDiv{ +position : absolute; +color : #74DF00; +font-size:22px; +} +.goodMarkRound{ +position : absolute; +border:solid 3px #74DF00; +border-radius: 50%; +-moz-border-radius: 50%; +-webkit-border-radius: 50%; +} +.errorMarkRound{ +position : absolute; +border:solid 3px red; +border-radius: 50%; +-moz-border-radius: 50%; +-webkit-border-radius: 50%; +} +/* RAPPORT ECRIT FIN DE MODULE */ +.reportw{ +border: 1px solid #8a8a8a; +border-radius: 0.2em; +-moz-border-radius: 0.2em; +-webkit-border-radius: 0.2em; +background-color : white; +} +.reportw h2{ +border-bottom: 1px solid #8a8a8a; +padding:1%; +margin:0; +} +.reportw p{ +padding:1%; +} +.printBilanRapportW{ +float:right; +width:55px; +height:55px; +margin:1%; +background-image:url("../fx/printbtn.png"); +background-position: center center; +background-repeat: no-repeat; +cursor:pointer; +} +/* DIALOG DOWNLOAD BOX */ +#dialogDown{ +position:absolute; +left :50%; +top:50%; +width:350px; +margin-left:-175px; +text-align:center; +background-color : white; +background-repeat:no-repeat; +background-position:center; +overflow : hidden; +border-radius: 0.5em; +-moz-border-radius: 0.5em; +-webkit-border-radius: 0.5em; +border: 2px solid #8a8a8a; +font-size:22px; +} +#dialogDown p{ +margin:1%; +padding:3%; +} +.dialogDownTitle{ +margin:1%; +padding:3%; +color:purple; +} +.buttonDialogDownNo , .buttonDialogDownYes{ +background-color:#ededed; +-moz-box-shadow:inset 0px 1px 0px 0px #ffffff; +-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; +box-shadow:inset 0px 1px 0px 0px #ffffff; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) ); +background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% ); +-webkit-border-radius:10px; +-moz-border-radius:10px; +border-radius:10px; +text-indent:0; +border:1px solid #dcdcdc; +display:inline-block; +font-style:normal; +padding:5px; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #ffffff; +margin:0.1em; +font-size:22px; +width:60px; +} +.buttonDialogDownNo{ +color : gray; +} +.buttonDialogDownYes{ +color : green; +} +/* DIALOG SAVE BOX */ +#dialogReprendre{ +position:absolute; +left :50%; +top : 5%; +width:350px; +margin-left:-175px; +text-align:center; +background-color : white; +background-repeat:no-repeat; +background-position:center; +overflow : hidden; +border-radius: 0.5em; +-moz-border-radius: 0.5em; +-webkit-border-radius: 0.5em; +border: 2px solid #B43104; +font-size:22px; +z-index : 10; +} +#dialogReprendre p{ +margin:1%; +padding:3%; +} +.opacReprendre{ +position:absolute; +left : 0px; +top : 0px; +width : 100%; +height : 100%; +z-index : 10; +display : none; +background-color : gray; +opacity: 0.4; +filter: alpha(opacity=40); +} +/* LIGHT BOX */ +#lightbox{ +position:absolute; +background-color : transparent; +background-repeat:no-repeat; +background-position:center; +z-index : 97; +display:none; +} +.closelightbox{ +width:50px; +height:50px; +position:absolute; +right:-5px; +top:-5px; +background-image:url("../fx/close.png"); +background-repeat:no-repeat; +background-position:center; +position:absolute; +z-index : 99; +cursor:pointer; +} +.innerlightbox{ +position:absolute; +background-color : white; +width:96%;height:96%; +left:2%;top:2%; +border:solid 1px gray; +background-repeat:no-repeat; +background-position:center; +position:absolute; +z-index : 98; +-moz-border-radius: 5px; +-khtml-border-radius: 5px; +-webkit-border-radius: 5px; +border-radius: 5px; +} +/* BILAN SUIVI BOX */ +.toptitle{ +position:relative; +top:0px; +left:0px; +width:98%; +padding:1%; +padding-top:5px; +padding-bottom:5px; +overflow:hidden; +color:white; +font-size:18px; +background: #6E6E6E; +background-image:url("glow.png"); +} +.containBilan{ +position:relative; +left:0px; +width:98%; +height:90%; +padding:1%; +overflow:auto; +} +.blockbilan{ +position:relative; +float:left; +width:45%; +padding:1%; +margin:1%; +margin-right:0px; +margin-bottom:0px; +height:185px; +overflow:auto; +font-size:15px; +border:solid 1px gray; +} +.goodRepBilan{ +font-size:17px; +color:green; +font-weight:bold; +} +.questbilan{ +width:93%; +margin-left:1%; +padding-bottom:5px; +font-size:15px; +border-bottom:dotted 1px gray; +} +.mainshare{ +position:relative; +margin-left:auto; +margin-right:auto; +top:1%; +width:100%; +max-width:600px; +height:98%; +background: beige; +border:solid 1px gray; +overflow:hidden; +box-shadow: 1px 1px 12px #A9BCF5; +z-index:1000000; +display:none; +} +.mainbilan{ +position:relative; +margin-left:auto; +margin-right:auto; +top:1%; +width:100%; +max-width:700px; +height:98%; +background: beige; +border:solid 1px gray; +overflow:hidden; +box-shadow: 1px 1px 12px #A9BCF5; +z-index:1000000; +display:none; +} +.printBilan{ +position:absolute; +right:2px; +bottom:2px; +z-index:13; +cursor :pointer; +} +.suiviresult{ +position:absolute; +left:90%; +top:5%; +width:90%; +height:90%; +max-height:600px; +background: beige; +border:solid 1px gray; +overflow:hidden; +box-shadow: 1px 1px 12px #A9BCF5; +z-index:1000; +border-radius:1%; +} +.suivibox{ +width:50px; +height:50px; +position:absolute; +right:10px; +bottom:10px; +position:absolute; +z-index :1002; +border:solid 2px gray; +cursor:pointer; +border-radius:50%; +text-align:center; +line-height:50px; +font-weight:bold; +font-size:30px; +} +.suivibox:hover{ +border:solid 2px black; +} +.toptitlesuiviRed{ +position:relative; +top:0px; +left:0px; +width:98%; +padding:1%; +padding-top:5px; +padding-bottom:5px; +font-size:17px; +background: red; +color:white; +overflow:hidden; +} +.toptitlesuiviGreen{ +position:relative; +top:0px; +left:0px; +width:98%; +padding:1%; +padding-top:5px; +padding-bottom:5px; +font-size:17px; +background: green; +color:white; +overflow:hidden; +} +.viewScreenMini{ +position:absolute; +display:block; +bottom:2px; +left:2px; +width:30px; +height:20px; +text-decoration:none; +background-image:url("../fx/viewer.png"); +background-repeat:no-repeat; +} +.viewScreenApercu{ +color:white; +background: #6E6E6E; +background-image:url("glow.png"); +background-repeat:no-repeat; +background-position:center center; +opacity: 0.5; +filter: alpha(opacity=50); +} +/* LANG BOX */ +.langposi{ +position:absolute; +top:1px; +right:1px; +cursor:pointer; +margin:3px; +width:36px; +height:25px; +} +.langposicenter{ +cursor:pointer; +margin:30px; +margin-left:2px; +margin-right:2px; +border:solid 1px white +} +.langbox{ +position : absolute; +width : 400px; +height : 100px; +top : 50%; +left : 50%; +margin-left : -200px; +margin-top : -50px; +z-index:20; +font-size: 60px; +text-align:center; +background: black; +border-radius:15px; +display:none; +} +/* LEGEND BOX */ +.legendbox{ +position:absolute; +left:2%; +top:88%; +width:96%; +height:2%; +} +/* DiALOGUE BOX */ +.RightRepDialog ,.BottomRepDialog{ +background-color:#ededed; +-moz-box-shadow:inset 0px 1px 0px 0px #ffffff; +-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; +box-shadow:inset 0px 1px 0px 0px #ffffff; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) ); +background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% ); +-webkit-border-radius:10px; +-moz-border-radius:10px; +border-radius:10px; +text-indent:0; +border:1px solid #dcdcdc; +display:inline-block; +font-style:normal; +padding:5px; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #ffffff; +margin:0.1em; +} +.RightRepDialog:hover ,.BottomRepDialog:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) ); +background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% ); +background-color:#dfdfdf; +} +.RightRepDialog:active ,.BottomRepDialog:active{ +position:relative; +top:1px; +} +.zonereponsesdialog{ +text-align:center; +padding:1%; +} +#zonedialogtexte{ +} +/*Game Hero Select*/ +.gameheroselect{ +border: 2px solid gray; +cursor: pointer; +} +.gameheroselect:hover{ +border: 2px solid brown; +} +.gameheroselect:active{ +border: 2px solid red; +} +/* BAR GRAPH */ +.bargraph{ +height: 229px; +position: relative; +background: url('papergrid.jpg') repeat-x; +border-left: 1px solid #d4d4d4; +margin: 15px auto 50px; +} +.bargraph ul.bars{ +margin: 0; +padding: 0; +/* getting rid of bullets */ +list-style-type: none; +} +div.bargraph div.colorfilter{ +position: absolute; +top: 0; left: 0; +height: 201px; +background-color: black; +opacity:0.2; filter:alpha(opacity=20); +z-index: 97; +} +div.bargraph div.colorfilter2{ +position: absolute; +top: 0; left: 0; +height: 201px; +background-color: black; +opacity:0.4; filter:alpha(opacity=40); +z-index: 97; +} +.bargraph ul.bars li{ +position: absolute; +width: 30px; +height: 200px; +/*move it up from bottom label*/ +bottom: 29px; +padding: 0; +margin: 0; +background:gray; +background: url('bars200.jpg') no-repeat; +text-align: center; +font-weight: bold; +color: white; +line-height: 2.5em; +font-size: 13px; +z-index: 99; +} +.bargraph ul.bars li span{ +position: relative; +top: -25px; +color: #7c7c7c; +} +.bargraph ul.bars li img{ +margin: 0; padding: 0; +position: relative; +top: -71px; +left: 0; +} +.bargraph ul.bars li span.darkpen{ +color: #515151; +position: static; +} +.bargraph ul.bars li span.whitepen{ +color: red; +} +.bargraph ul.bars li.bar1{left: 21px;} +.bargraph ul.bars li.bar2{left: 94px;} +.bargraph ul.bars li.bar3{left: 167px;} +.bargraph ul.bars li.bar4{left: 240px;} +.bargraph ul.bars li.bar5{left: 313px;} +.bargraph ul.bars li.bar6{left: 386px;} +.bargraph ul.bars li.bar7{left: 459px;} +.bargraph ul.bars li.bar8{left: 532px;} +.bargraph ul.bars li.bar9{left: 605px;} +.bargraph ul.bars li.bar10{left: 678px;} +.bargraph ul.bars li.bar11{left: 751px;} +.bargraph ul.bars li.bar12{left: 824px;} +.bargraph ul.bars li.bar13{left: 897px;} +.bargraph ul.bars li.bar14{left: 970px;} +.bargraph ul.bars li.bar15{left: 1043px;} +.bargraph ul.bars li.bar16{left: 1116px;} +.bargraph ul.bars li.bar17{left: 1189px;} +.bargraph ul.bars li.bar18{left: 1262px;} +.bargraph ul.bars li.bar19{left: 1335px;} +.bargraph ul.bars li.bar20{left: 1408px;} +/* bottom means 100% in background-position */ +.bargraph ul.bars li.colorbar1 { background-position: 0px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar2 { background-position: -30px bottom;background-color: #0B4C5F;} +.bargraph ul.bars li.colorbar3{ background-position: -60px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar4 { background-position: -90px bottom;background-color: #0B4C5F;} +.bargraph ul.bars li.colorbar5 { background-position: -120px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar6 { background-position: -150px bottom;background-color: #0B4C5F;} +.bargraph ul.bars li.colorbar7{ background-position: -180px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar8 { background-position: -120px bottom;background-color: #0B4C5F;} +.bargraph ul.bars li.colorbar9 { background-position: -150px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar10{ background-position: -180px bottom;background-color: #0B4C5F;} +.bargraph ul.bars li.colorbar11 { background-position: 0px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar12 { background-position: -30px bottom;background-color: #0B4C5F;} +.bargraph ul.bars li.colorbar13{ background-position: -60px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar14 { background-position: -90px bottom;background-color: #0B4C5F;} +.bargraph ul.bars li.colorbar15 { background-position: -120px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar16 { background-position: -150px bottom;background-color: #0B4C5F;} +.bargraph ul.bars li.colorbar17{ background-position: -180px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar18 { background-position: -120px bottom;background-color: #0B4C5F;} +.bargraph ul.bars li.colorbar19 { background-position: -150px bottom;background-color: gray;} +.bargraph ul.bars li.colorbar20{ background-position: -180px bottom;background-color: #0B4C5F;} +.label{ list-style-type: none; +position: absolute; bottom: 3px; +margin: 0; padding: 0; +background-color: black; +} +.label li{ +color: white; +background-color: black; +font-size: 10px; +width: 73px; +float: left; +text-align: center; +overflow: hidden; +line-height: 9px; +} +ul.y-axis{ +list-style-type: none; position: absolute; +left: -45px; +width: 40px; +text-align: right; +bottom: 0; +margin: 0; padding: 0; +} +ul.y-axis li:first-child{ +height: 40px; +line-height: 40px; +} +ul.y-axis li{ +color: #aba8a8; +font-size: 12px; +height: 51px; +line-height: 51px; +text-align: right; +} +ul.y-axis li.units{ +position: absolute; +bottom: 110px; +right: 20px; +line-height: 1.2em; +height: auto; +} +.bargraph p{ +position: absolute; +left: 0; +top: 236px; +padding: 0; +margin:0; +text-align: left; +width: 100%; +font-size: 10px; color: black; +line-height: 1.3em; +} +.bargraph p.centered{ text-align: center; } +/* EXAM BAR */ +.examscreen_box , .examscreen_box_bottom{ +position: absolute; +background: white; +border: 2px solid gray; +cursor:pointer; +z-index : 1000; +text-align:center; +padding-top:4px; +width: 300px; +height : 233px; +} +.examscreen_box:after, .examscreen_box:before{ +bottom: 100%; +left: 50%; +border: solid transparent; +content: " "; +height: 0; +width: 0; +position: absolute; +pointer-events: none; +} +.examscreen_box:after{ +border-color: rgba(136, 183, 213, 0); +border-bottom-color: white; +border-width: 10px; +margin-left: -145px; +} +.examscreen_box:before{ +border-color: rgba(194, 225, 245, 0); +border-bottom-color: gray; +border-width: 13px; +margin-left: -148px; +} +.examscreen_box_bottom:after, .examscreen_box_bottom:before{ +top: 100%; +left: 50%; +border: solid transparent; +content: " "; +height: 0; +width: 0; +position: absolute; +pointer-events: none; +} +.examscreen_box_bottom:after{ +border-color: rgba(136, 183, 213, 0); +border-top-color: white; +border-width: 10px; +margin-left: -145px; +} +.examscreen_box_bottom:before{ +border-color: rgba(194, 225, 245, 0); +border-top-color: gray; +border-width: 13px; +margin-left: -148px; +} +.showScreenimg{ +width: 96%; +margin:2%; +} +/*nomenclature*/ +.nomenclature{ +position : absolute; +background-color: transparent; +} +.lignenomenclaturereset{ +border-radius : 5px; +background-color: #CED8F6; +cursor:pointer; +} +.lignenomenclaturereset:hover{ +border-radius : 5px; +background-color: #F5A9D0; +cursor:pointer; +} +.lignenomenclature{ +border-radius : 5px; +background-color: #F2F2F2; +cursor:pointer; +} +.lignenomenclature:hover{ +background-color: #F5A9D0; +cursor:pointer; +} +/* Domaine Select */ +.domaineselect div, .domaineselect fieldset , .domaineselect section{ +margin: 0; +padding: 0; +border: 0; +font-size: 100%; +font: inherit; +vertical-align: baseline; +} +.domaineselect{ +font: 13px/20px 'Lucida Grande', Verdana, sans-serif; +color: #404040; +margin: 50px auto; +margin: 0px; +width: 200px; +background: white; +border: 1px solid #cdd3d7; +border-radius: 4px; +-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} +.domaineselect-header{ +position: relative; +line-height: 24px; +padding: 7px 15px; +color: #5d6b6c; +text-shadow: 0 1px rgba(255, 255, 255, 0.7); +background: #f0f1f2; +border-bottom: 1px solid #d1d1d1; +border-radius: 3px 3px 0 0; +background-image: -webkit-linear-gradient(top, #f5f7fd, #e6eaec); +background-image: -moz-linear-gradient(top, #f5f7fd, #e6eaec); +background-image: -o-linear-gradient(top, #f5f7fd, #e6eaec); +background-image: linear-gradient(to bottom, #f5f7fd, #e6eaec); +-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 1px rgba(0, 0, 0, 0.03); +box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 1px rgba(0, 0, 0, 0.03); +} +.domaineselect-title{ +line-height: inherit; +font-size: 14px; +font-weight: bold; +margin: 0; +padding: 0; +border: 0; +vertical-align: baseline; +} +.domaineselect-lists{ +position: absolute; +top: 50%; +right: 10px; +margin-top: -11px; +padding: 10px 4px; +width: 19px; +height: 3px; +font: 0/0 serif; +text-shadow: none; +color: transparent; +} +.domaineselect-lists:before{ +content: ''; +display: block; +height: 3px; +background: #8c959d; +border-radius: 1px; +-webkit-box-shadow: 0 6px #8c959d, 0 -6px #8c959d; +box-shadow: 0 6px #8c959d, 0 -6px #8c959d; +} +.domaineselect-list-item{ +display: block; +line-height: 24px; +padding: 12px 15px; +cursor: pointer; +-webkit-user-select: none; +-moz-user-select: none; +-ms-user-select: none; +user-select: none; +} +.domaineselect-list-item + .domaineselect-list-item{ +border-top: 1px solid #f0f2f3; +} +.domaineselect-list-cb{ +display: none; +} +.domaineselect-list-mark{ +position: relative; +display: inline-block; +vertical-align: top; +margin-right: 12px; +width: 20px; +height: 20px; +border: 2px solid #c4cbd2; +border-radius: 12px; +} +.domaineselect-list-mark:before{ +content: ''; +display: none; +position: absolute; +top: 50%; +left: 50%; +margin: -5px 0 0 -6px; +height: 4px; +width: 8px; +border: solid #39ca74; +border-width: 0 0 4px 4px; +-webkit-transform: rotate(-45deg); +-moz-transform: rotate(-45deg); +-ms-transform: rotate(-45deg); +-o-transform: rotate(-45deg); +transform: rotate(-45deg); +} +.domaineselect-list-cb:checked ~ .domaineselect-list-mark{ +border-color: #39ca74; +} +.domaineselect-list-cb:checked ~ .domaineselect-list-mark:before{ +display: block; +} +.domaineselect-list-desc{ +font-weight: bold; +color: #8a9a9b; +} +.domaineselect-list-cb:checked ~ .domaineselect-list-desc{ +color: #34bf6e; +} +li.playing{ +background:#A9BCF5; +} +li.playing span{ +background: url('../data/note.png') center center; +width: 18px; +height: 18px; +padding: 0px; +margin: 0px; +position: absolute; +left: -22px; +top: 9px; +} +/* Chargement 3D */ +.coverall{ +position:absolute; +padding:0px; +margin:0px; +border:solid 0px blue; +left:0px; +right:0px; +top:0px; +bottom:0px; +padding:0; +margin:0; +background-color: #BDBDBD; +background-image: url('ajax_loader_blue.gif'); +background-position: center center; +background-repeat:no-repeat; +z-index:50; +} +/*LUDI Sortable*/ +.ludiSortableListSortable{ +position : absolute; +border : dotted 1px #f0edf0; +width : 450px; +height : 400px; +padding : 1%; +background-image : url("../fx/arrowsortable.png"); +background-position : center top; +background-repeat : no-repeat; +} +.ludiSortableListSortableUl{ +width : 45%; +float : left; +padding : 0; +margin : 0; +margin-top : 1%; +} +.ludiSortableListSortableUl2{ +border : dotted 1px #f0edf0; +width : 45%; +float : left; +padding : 2%; +margin : 0; +margin-top : 1%; +height : 90%; +} +.ludiSortableUl{ +padding : 0; +margin : 0; +min-height : 170px; +} +.ludiSortableUl li{ +list-style-type: none; +border : solid 1px black; +padding : 3%; +margin : 1%; +background-color : white; +cursor : move; +-webkit-touch-callout:none; +-webkit-user-select: none; +-moz-user-select: none; +-ms-user-select: none; +user-select: none; +} +.ludiSortableUl li{ +-moz-box-shadow:inset 0px 1px 0px 0px #ffffff; +-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; +box-shadow:inset 0px 1px 0px 0px #ffffff; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, white), color-stop(1, #f0edf0) ); +background:-moz-linear-gradient( center top, white 5%, #f0edf0 100% ); +background-color:#ededed; +border-radius: 5px; +text-indent:0; +border:1px solid #dcdcdc; +/*display:inline-block;*/ +color : black; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #ffffff; +} +.barBody{ +border-radius:6px; +background-image : url("../fx/transparent.png"); +} +.barSty{ +padding-bottom: 2px; +cursor:pointer; +background-image : url("../fx/transparent.png"); +border-collapse: collapse; +} +.barStyQcmLeft{ +border-top:solid 1px; +border-collapse: collapse; +} +.barStyQcmRight{ +border-top:solid 1px; +border-collapse: collapse; +} +/* +.examscreenbox{ +position: relative; +padding:5px; +margin:5px; +margin-left:1px; +margin-right:1px; +padding-left:2px; +padding-right:2px; +font-size : 27px; +text-decoration : none; +color : black; +cursor:pointer; +z-index : 6; +} +.examscreenbox:hover{ +color : red; +} +*/ +.viewport{ +width: 90%; +height: 200px; +overflow: hidden; +left: 0; +position: absolute; +border:solid 0px gray; +} +.overview{ +list-style: none; +position: absolute; +left: 0; +top: 0; +padding: 0; +margin: 0; +width: 90%; +border:solid 0px gray; +} +.scrollbar{ background: transparent url(bg-scrollbar-track-y.png) no-repeat 0 0; position: relative; background-position: 0 0; float: right; width: 15px; } +.track{ background: transparent url(bg-scrollbar-trackend-y.png) no-repeat 0 100%; height: 100%; width:13px; position: relative; padding: 0 1px; } +.thumb{ background: transparent url(bg-scrollbar-thumb-y.png) no-repeat 50% 100%; height: 20px; width: 25px; cursor: pointer; overflow: hidden; position: absolute; top: 0; left: -5px; } +.thumb .end{ background: transparent url(bg-scrollbar-thumb-y.png) no-repeat 50% 0; overflow: hidden; height: 5px; width: 25px; } +.disable{ display: none; } +.contentflux{ +width:400px; +height:300px; +overflow:hidden; +position:relative; +} +.footerflux{ +overflow:hidden; +position:absolute; +left:0px; +bottom:2px; +} +.ray5{ +-moz-border-radius: 5px; +-khtml-border-radius: 5px; +-webkit-border-radius: 5px; +border-radius: 5px; +} +.contentinner{ +position:relative; +left:1%; +top:1%; +width:98%; +height:98%; +} +.box-shadow{ +box-shadow: #969696 3px 3px 3px; +-moz-box-shadow: 2px 2px 3px #969696; /* for Firefox 3.5+ */ +-webkit-box-shadow: 2px 2px 3px #969696; /* for Safari and Chrome */ +filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=145, Strength=2); +} +.titreflux{ +width: 95%; +margin: 0px; +margin-left: 6px; +margin-top: 7px; +padding: 1px; +font-weight: bold; +} +.mini_img_flux{ +border:0px dotted pink; +float:right; +margin:2px; +width: 34%; +background-position: center; +background-repeat: no-repeat; +margin-left: 3px; +margin-top: 3px; +} +.full_img_flux{ +border:0px dotted pink; +float:right; +margin:2px; +width: 40%; +background-position: center; +background-repeat: no-repeat; +margin-left: 3px; +margin-top: 3px; +} +.contenuflux{ +border:0px dotted gray; +width: 95%; +height: 80%; +margin-left: 4px; +overflow:hidden; +} +.contenuflux p{ +margin-left: 0px; +margin : 1px; +padding : 1px; +} +.contenufluxfull{ +border:0px dotted gray; +width: 97%; +height: 90%; +margin-left: 4px; +overflow:hidden; +} +.contenufluxfull p{ +margin-left: 0px; +margin : 1px; +padding : 1px; +} +.loadslide{ +position:absolute; +left :50%; +top:50%; +margin-left: -21px; +margin-top : -6px; +} +.bullewhite0{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bullewhite.png"); +background-position: left top; +background-repeat: no-repeat; +} +.bullewhite1{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bullewhite.png"); +background-position: right top; +background-repeat: no-repeat; +} +.bullewhite2{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bullewhite.png"); +background-position: left bottom; +background-repeat: no-repeat; +} +.bullewhite3{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bullewhite.png"); +background-position: right bottom; +background-repeat: no-repeat; +} +/* BULLE BEIGE */ +.bullebeige0{ +position:absolute; +border: 0px solid red; +padding: 1px;margin: 1px; +background-image:url("../fx/bullebeige.png"); +background-position: left top; +background-repeat: no-repeat; +} +.bullebeige1{ +position:absolute; +border: 0px solid red; +padding: 1px;margin: 1px; +background-image:url("../fx/bullebeige.png"); +background-position: right top; +background-repeat: no-repeat; +} +.bullebeige2{ +position:absolute; +border: 0px solid red; +padding: 1px;margin: 1px; +background-image:url("../fx/bullebeige.png"); +background-position: left bottom; +background-repeat: no-repeat; +} +.bullebeige3{ +position:absolute; +border: 0px solid red; +padding: 1px;margin: 1px; +background-image:url("../fx/bullebeige.png"); +background-position: right bottom; +background-repeat: no-repeat; +} +/* BULLE BLUE */ +.bulleblue0{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleblue.png"); +background-position: left top; +background-repeat: no-repeat; +} +.bulleblue1{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleblue.png"); +background-position: right top; +background-repeat: no-repeat; +} +.bulleblue2{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleblue.png"); +background-position: left bottom; +background-repeat: no-repeat; +} +.bulleblue3{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleblue.png"); +background-position: right bottom; +background-repeat: no-repeat; +} +/* BULLE ANOTE */ +.bulleanote0{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleanote.png"); +background-position: left top; +background-repeat: no-repeat; +} +.bulleanote1{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleanote.png"); +background-position: right top; +background-repeat: no-repeat; +} +.bulleanote2{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleanote.png"); +background-position: left bottom; +background-repeat: no-repeat; +} +.bulleanote3{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleanote.png"); +background-position: right bottom; +background-repeat: no-repeat; +} +.bullewhite0{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bullewhite.png"); +background-position: left top; +background-repeat: no-repeat; +} +.bullewhite1{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bullewhite.png"); +background-position: right top; +background-repeat: no-repeat; +} +.bullewhite2{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bullewhite.png"); +background-position: left bottom; +background-repeat: no-repeat; +} +.bullewhite3{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bullewhite.png"); +background-position: right bottom; +background-repeat: no-repeat; +} +/* BULLE BEIGE */ +.bullebeige0{ +position:absolute; +border: 0px solid red; +padding: 1px;margin: 1px; +background-image:url("../fx/bullebeige.png"); +background-position: left top; +background-repeat: no-repeat; +} +.bullebeige1{ +position:absolute; +border: 0px solid red; +padding: 1px;margin: 1px; +background-image:url("../fx/bullebeige.png"); +background-position: right top; +background-repeat: no-repeat; +} +.bullebeige2{ +position:absolute; +border: 0px solid red; +padding: 1px;margin: 1px; +background-image:url("../fx/bullebeige.png"); +background-position: left bottom; +background-repeat: no-repeat; +} +.bullebeige3{ +position:absolute; +border: 0px solid red; +padding: 1px;margin: 1px; +background-image:url("../fx/bullebeige.png"); +background-position: right bottom; +background-repeat: no-repeat; +} +.bulleblue0{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleblue.png"); +background-position: left top; +background-repeat: no-repeat; +} +.bulleblue1{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleblue.png"); +background-position: right top; +background-repeat: no-repeat; +} +.bulleblue2{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleblue.png"); +background-position: left bottom; +background-repeat: no-repeat; +} +.bulleblue3{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleblue.png"); +background-position: right bottom; +background-repeat: no-repeat; +} +.bulleanote0{ +position:absolute; +border: 0px solid red;padding: 1px;margin: 1px; +background-image:url("../fx/bulleanote.png"); +background-position: left top; +background-repeat: no-repeat; +} +.bulleanote1{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bulleanote.png"); +background-position: right top; +background-repeat: no-repeat; +} +.bulleanote2{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bulleanote.png"); +background-position: left bottom; +background-repeat: no-repeat; +} +.bulleanote3{ +position:absolute; +border: 0px solid red; +padding: 1px; +margin: 1px; +background-image:url("../fx/bulleanote.png"); +background-position: right bottom; +background-repeat: no-repeat; +} +/*STANDARD*/ +.css3button{ +position:absolute; +color: #474747; +background:gray; +background:url("fondbtn.jpg") top center; +background: -moz-linear-gradient( +top, +#f2f2f2 0%, +#e1e1e1 50%, +#dddddd 50%, +#bcbcbc); +background: -webkit-gradient( +linear, left top, left bottom, +from(#f2f2f2), +color-stop(0.50, #e1e1e1), +color-stop(0.50, #dddddd), +to(#bcbcbc)); +border-radius: 6px; +-moz-border-radius: 6px; +-webkit-border-radius: 6px; +border: 1px solid #8a8a8a; +-moz-box-shadow: +0px 1px 3px rgba(041,005,041,0), +inset 0px 1px 6px rgba(005,088,255,0.2); +-webkit-box-shadow: +0px 1px 3px rgba(041,005,041,0), +inset 0px 1px 6px rgba(005,088,255,0.2); +text-shadow: +0px 0px 0px rgba(000,000,000,0), +0px 0px 0px rgba(255,255,255,0); +cursor:pointer; +} +.css3button:hover{ +border: 1px solid pink; +text-shadow: +0px 0px 0px rgba(000,000,000,0), +0px 0px 0px pink; +cursor:pointer; +border: 1px solid #8a8a8a; +} +.css3button:active{ +border: 1px solid pink; +text-shadow: +0px 0px 0px rgba(000,000,000,0), +0px 0px 0px pink; +cursor:pointer; +border: 1px solid #8a8a8a; +} +.css3modernblue{ +-moz-box-shadow:inset 0px 1px 0px 0px #bee2f9; +-webkit-box-shadow:inset 0px 1px 0px 0px #bee2f9; +box-shadow:inset 0px 1px 0px 0px #bee2f9; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #63b8ee), color-stop(1, #468ccf) ); +background:-moz-linear-gradient( center top, #63b8ee 5%, #468ccf 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63b8ee', endColorstr='#468ccf'); +background-color:#63b8ee; +text-indent:0; +border:1px solid #3866a3; +color:#14396a; +font-weight:bold; +font-style:normal; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #7cacde; +} +.css3modernblue:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #468ccf), color-stop(1, #63b8ee) ); +background:-moz-linear-gradient( center top, #468ccf 5%, #63b8ee 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#468ccf', endColorstr='#63b8ee'); +background-color:#468ccf; +} +.css3modernblue:active{ +position:relative; +top:1px; +} +.css3modernorange{ +-moz-box-shadow:inset 0px 1px 0px 0px #f9eca0; +-webkit-box-shadow:inset 0px 1px 0px 0px #f9eca0; +box-shadow:inset 0px 1px 0px 0px #f9eca0; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f0c911), color-stop(1, #f2ab1e) ); +background:-moz-linear-gradient( center top, #f0c911 5%, #f2ab1e 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0c911', endColorstr='#f2ab1e'); +background-color:#f0c911; +text-indent:0; +border:1px solid #e65f44; +font-weight:bold; +font-style:normal; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #ded17c; +} +.css3modernorange:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f2ab1e), color-stop(1, #f0c911) ); +background:-moz-linear-gradient( center top, #f2ab1e 5%, #f0c911 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2ab1e', endColorstr='#f0c911'); +background-color:#f2ab1e; +} +.css3modernorange:active{ +position:relative; +top:1px; +} +.css3modernpurple{ +-moz-box-shadow:inset 0px 1px 0px 0px #e184f3; +-webkit-box-shadow:inset 0px 1px 0px 0px #e184f3; +box-shadow:inset 0px 1px 0px 0px #e184f3; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c123de), color-stop(1, #a20dbd) ); +background:-moz-linear-gradient( center top, #c123de 5%, #a20dbd 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c123de', endColorstr='#a20dbd'); +background-color:#c123de; +text-indent:0; +border:1px solid #a511c0; +color:#ffffff; +font-weight:bold; +font-style:normal; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #9b14b3; +} +.css3modernpurple:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a20dbd), color-stop(1, #c123de) ); +background:-moz-linear-gradient( center top, #a20dbd 5%, #c123de 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a20dbd', endColorstr='#c123de'); +background-color:#a20dbd; +} +.css3modernpurple:active{ +position:relative; +top:1px; +} +.css3moderngray{ +-moz-box-shadow:inset 0px 1px 0px 0px #a7b6c9; +-webkit-box-shadow:inset 0px 1px 0px 0px #a7b6c9; +box-shadow:inset 0px 1px 0px 0px #a7b6c9; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4d5359), color-stop(1, #0c182b) ); +background:-moz-linear-gradient( center top, #4d5359 5%, #0c182b 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4d5359', endColorstr='#0c182b'); +background-color:#4d5359; +text-indent:0; +border:1px solid #000000; +color:#ffffff; +font-weight:bold; +font-style:normal; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #62686e; +} +.css3moderngray:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #0c182b), color-stop(1, #4d5359) ); +background:-moz-linear-gradient( center top, #0c182b 5%, #4d5359 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c182b', endColorstr='#4d5359'); +background-color:#0c182b; +}.css3moderngray:active{ +position:relative; +top:1px; +} +.css3modernreddarker{ +-moz-box-shadow:inset 0px 1px 0px 0px #f5978e; +-webkit-box-shadow:inset 0px 1px 0px 0px #f5978e; +box-shadow:inset 0px 1px 0px 0px #f5978e; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f24537), color-stop(1, #c62d1f) ); +background:-moz-linear-gradient( center top, #f24537 5%, #c62d1f 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f24537', endColorstr='#c62d1f'); +background-color:#f24537; +text-indent:0; +border:1px solid #d02718; +color:#ffffff; +font-weight:bold; +font-style:normal; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #810e05; +} +.css3modernreddarker:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24537) ); +background:-moz-linear-gradient( center top, #c62d1f 5%, #f24537 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24537'); +background-color:#c62d1f; +}.css3modernreddarker:active{ +position:relative; +top:1px; +} +.css3modernpink{ +-moz-box-shadow:inset 0px 1px 0px 0px #fbafe3; +-webkit-box-shadow:inset 0px 1px 0px 0px #fbafe3; +box-shadow:inset 0px 1px 0px 0px #fbafe3; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ff5bb0), color-stop(1, #ef027d) ); +background:-moz-linear-gradient( center top, #ff5bb0 5%, #ef027d 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bb0', endColorstr='#ef027d'); +background-color:#ff5bb0; +text-indent:0; +border:1px solid #ee1eb5; +color:#ffffff; +font-weight:bold; +font-style:normal; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #c70067; +} +.css3modernpink:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ef027d), color-stop(1, #ff5bb0) ); +background:-moz-linear-gradient( center top, #ef027d 5%, #ff5bb0 100% ); +filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ef027d', endColorstr='#ff5bb0'); +background-color:#ef027d; +}.css3modernpink:active{ +position:relative; +top:1px; +} +.css3modernbutton3d{ +background-color: #3bb3e0; +text-decoration: none; +color: #fff; +background-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); +background-image: -o-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); +background-image: -moz-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); +background-image: -webkit-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); +background-image: -ms-linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); +background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(44,160,202)), color-stop(1, rgb(62,184,229)) ); +-webkit-border-radius: 8px; +-moz-border-radius: 8px; +-o-border-radius: 8px; +border-radius: 8px; +-webkit-box-shadow: inset 0px 8px 0px #2ab7ec, 0px 8px 0px 0px #156785, 0px 15px 20px #999; +-moz-box-shadow: inset 0px 8px 0px #2ab7ec, 0px 8px 0px 0px #156785, 0px 15px 20px #999; +-o-box-shadow: inset 0px 8px 0px #2ab7ec, 0px 8px 0px 0px #156785, 0px 15px 20px #999; +box-shadow: inset 0px 8px 0px #2ab7ec, 0px 8px 0px 0px #156785, 0px 15px 20px #999; +border:none; +} +.css3modernbutton3d:hover, .css3modernbutton3d:active{ +background-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); +background-image: -o-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); +background-image: -moz-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); +background-image: -webkit-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); +background-image: -ms-linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%); +background-image: -webkit-gradient( +linear, +left bottom, +left top, +color-stop(0, rgb(62,184,229)), +color-stop(1, rgb(44,160,202)) +); +-webkit-box-shadow: inset 0px 4px 0px #2ab7ec, 0px 6px 0px 0px #156785, 0px 15px 20px #999; +-moz-box-shadow: inset 0px 4px 0px #2ab7ec, 0px 6px 0px 0px #156785, 0px 15px 20px #999; +-o-box-shadow: inset 0px 4px 0px #2ab7ec, 0px 6px 0px 0px #156785, 0px 15px 20px #999; +box-shadow: inset 0px 4px 0px #2ab7ec, 0px 6px 0px 0px #156785, 0px 15px 20px #999; +border-top:solid 1px white; +margin-top:2px; +} +.css3modernbuttonPink3d{ +background-color: #ec528d; +background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(hsla(338, 90%, 80%, .8)), to(hsla(338, 90%, 70%, .2))); +background-image: -webkit-linear-gradient(hsla(338, 90%, 80%, .8), hsla(338, 90%, 70%, .2)); +background-image: -moz-linear-gradient(hsla(338, 90%, 80%, .8), hsla(338, 90%, 70%, .2)); +background-image: -o-linear-gradient(hsla(338, 90%, 80%, .8), hsla(338, 90%, 70%, .2)); +-webkit-border-radius: 8px; +-moz-border-radius: 8px; +border-radius: 8px; +-webkit-box-shadow: 0 8px 0 #c5376d, 0 15px 20px rgba(0, 0, 0, .35); +-moz-box-shadow: 0 8px 0 #c5376d, 0 15px 20px rgba(0, 0, 0, .35); +box-shadow: 0 8px 0 #c5376d, 0 15px 20px rgba(0, 0, 0, .35); +-webkit-transition: -webkit-box-shadow .1s ease-in-out; +-moz-transition: -moz-box-shadow .1s ease-in-out; +-o-transition: -o-box-shadow .1s ease-in-out; +transition: box-shadow .1s ease-in-out; +color: #fff; +text-shadow: 0 -1px 1px rgba(175, 49, 95, .9), 0 0 5px rgba(255, 255, 255, .8); +} +.css3modernbuttonPink3d:hover, .css3modernbuttonPink3d:active{ +-webkit-box-shadow: 0 6px 0 #c5376d, 0 12px 20px rgba(0, 0, 0, .35); +-moz-box-shadow: 0 6px 0 #c5376d, 0 12px 20px rgba(0, 0, 0, .35); +box-shadow: 0 6px 0 #c5376d, 0 12px 20px rgba(0, 0, 0, .35); +text-shadow: 0 -1px 1px rgba(175, 49, 95, .9), 0 0 5px rgba(255, 255, 255, .8); +background-color: #EC528D; +border-top:solid 1px white; +margin-top:2px; +} +.css3modernbuttonDark3d{ +background-color: #2E2E2E; +text-decoration: none; +color: #fff; +-webkit-border-radius: 8px; +-moz-border-radius: 8px; +-o-border-radius: 8px; +border-radius: 8px; +-webkit-box-shadow: inset 0px 8px 0px #2E2E2E, 0px 8px 0px 0px #6E6E6E, 0px 15px 20px #999; +-moz-box-shadow: inset 0px 8px 0px #2E2E2E, 0px 8px 0px 0px #6E6E6E, 0px 15px 20px #999; +-o-box-shadow: inset 0px 8px 0px #2E2E2E, 0px 8px 0px 0px #6E6E6E, 0px 15px 20px #999; +box-shadow: inset 0px 8px 0px #2E2E2E, 0px 8px 0px 0px #6E6E6E, 0px 15px 20px #999; +text-shadow: 0 -1px 1px #2E2E2E, 0 0 5px rgba(255, 255, 255, .8); +border:none; +} +.css3modernbuttonDark3d:hover, .css3modernbuttonDark3d:active{ +-webkit-box-shadow: inset 0px 4px 0px #2E2E2E, 0px 6px 0px 0px #6E6E6E, 0px 15px 20px #999; +-moz-box-shadow: inset 0px 4px 0px #2E2E2E, 0px 6px 0px 0px #6E6E6E, 0px 15px 20px #999; +-o-box-shadow: inset 0px 4px 0px #2E2E2E, 0px 6px 0px 0px #6E6E6E, 0px 15px 20px #999; +box-shadow: inset 0px 4px 0px #2E2E2E, 0px 6px 0px 0px #6E6E6E, 0px 15px 20px #999; +border-top:solid 1px white; +margin-top:2px; +} +.ie8button{ +position:absolute; +border: 1px solid #8a8a8a; +color: #474747; +background:whitesmoke; +filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-9 */ +background:url("fondbtn.jpg") top center; +cursor:pointer; +border-radius: 6px; +-moz-border-radius: 6px; +-webkit-border-radius: 6px; +} +.ie8button:hover{ +border: 1px solid pink; +cursor:pointer; +} +.ie8button:active{ +border: 1px solid pink; +cursor:pointer; +} +.palebluebutton +{ +background: #e7eef5; +border: 1px solid #becfe3; +border-radius: 16px; +-moz-border-radius: 16px; +-webkit-border-radius: 16px; +-moz-box-shadow: inset 0 1px 0 0 #fff; +-webkit-box-shadow: inset 0 1px 0 0 #fff; +color: #2a65a6; +font-size: 12px; +font-weight: normal; +line-height: 1; +padding: 5px 0 6px 0; +text-align: center; +width: 150px; +} +.palebluebutton:hover +{ +color: #04B4AE; +border: 1px solid #04B4AE; +} +.palebluebutton:active +{ +color: #04B4AE; +border: 1px solid #04B4AE; +} +.ipadul{ +position:absolute; +background:gray; +background:url("fondbtn.jpg") top center; +background: -moz-linear-gradient( +top, +#f2f2f2 0%, +#e1e1e1 50%, +#dddddd 50%, +#bcbcbc); +background: -webkit-gradient( +linear, left top, left bottom, +from(#f2f2f2), +color-stop(0.50, #e1e1e1), +color-stop(0.50, #dddddd), +to(#bcbcbc)); +background: linear-gradient(#DDDDDD, #BBBBBB) repeat scroll 0 0 #BBBBBB; +border: 1px solid #BBBBBB; +padding:0px; +margin:0px; +border-radius: 8px; +} +.ipadli{ +color: #333333; +font-weight: bold; +margin: 0; +display: block; +margin:0px; +border-radius: 8px; +padding:0px; +} +.ipadli:active{ +list-style: none outside none; +} +.ipadbutton{ +display: block; +overflow: hidden; +text-overflow: ellipsis; +white-space: nowrap; +color: #2F3E46; +text-shadow: 0 1px 0 #FFFFFF; +text-decoration: none !important; +list-style: none outside none; +text-align:center; +border-radius: 8px; +} +.ipadbutton:active{ +color: white; +background:#2489CE; +text-shadow: 0 0 0 #FFFFFF; +} +.neoCssGray{ +-moz-box-shadow:inset 0px 1px 0px 0px #ffffff; +-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; +box-shadow:inset 0px 1px 0px 0px #ffffff; +background:-webkit-gradient(linear,left top,left bottom,color-stop(0.05,#f9f9f9), color-stop(1,#e9e9e9)); +background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% ); +background-color:#f9f9f9; +-webkit-border-top-left-radius:15px; +-moz-border-radius-topleft:15px; +border-top-left-radius:15px; +-webkit-border-top-right-radius:15px; +-moz-border-radius-topright:15px; +border-top-right-radius:15px; +-webkit-border-bottom-right-radius:15px; +-moz-border-radius-bottomright:15px; +border-bottom-right-radius:15px; +-webkit-border-bottom-left-radius:15px; +-moz-border-radius-bottomleft:15px; +border-bottom-left-radius:15px; +text-indent:0; +border:2px solid #dcdcdc; +display:inline-block; +font-weight:bold; +font-style:normal; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #ffffff; +} +.neoCssGray:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) ); +background:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% ); +background-color:#e9e9e9; +} +.neoCssGray:active{ +position:relative; +top:1px; +} +.neoCssBlue{ +-moz-box-shadow:inset 0px 1px 0px 0px #bbdaf7; +-webkit-box-shadow:inset 0px 1px 0px 0px #bbdaf7; +box-shadow:inset 0px 1px 0px 0px #bbdaf7; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #378de5) ); +background:-moz-linear-gradient( center top, #79bbff 5%, #378de5 100% ); +background-color:#79bbff; +-webkit-border-top-left-radius:15px; +-moz-border-radius-topleft:15px; +border-top-left-radius:15px; +-webkit-border-top-right-radius:15px; +-moz-border-radius-topright:15px; +border-top-right-radius:15px; +-webkit-border-bottom-right-radius:15px; +-moz-border-radius-bottomright:15px; +border-bottom-right-radius:15px; +-webkit-border-bottom-left-radius:15px; +-moz-border-radius-bottomleft:15px; +border-bottom-left-radius:15px; +text-indent:0; +border:2px solid #84bbf3; +display:inline-block; +color:#ffffff; +font-size:15px; +font-weight:bold; +font-style:normal; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #528ecc; +} +.neoCssBlue:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #378de5), color-stop(1, #79bbff) ); +background:-moz-linear-gradient( center top, #378de5 5%, #79bbff 100% ); +background-color:#378de5; +} +.neoCssBlue:active{ +position:relative; +top:1px; +} +.neoCssPurple{ +-moz-box-shadow:inset 0px 1px 0px 0px #e6cafc; +-webkit-box-shadow:inset 0px 1px 0px 0px #e6cafc; +box-shadow:inset 0px 1px 0px 0px #e6cafc; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c579ff), color-stop(1, #a341ee) ); +background:-moz-linear-gradient( center top, #c579ff 5%, #a341ee 100% ); +background-color:#c579ff; +-webkit-border-top-left-radius:15px; +-moz-border-radius-topleft:15px; +border-top-left-radius:15px; +-webkit-border-top-right-radius:15px; +-moz-border-radius-topright:15px; +border-top-right-radius:15px; +-webkit-border-bottom-right-radius:15px; +-moz-border-radius-bottomright:15px; +border-bottom-right-radius:15px; +-webkit-border-bottom-left-radius:15px; +-moz-border-radius-bottomleft:15px; +border-bottom-left-radius:15px; +text-indent:0; +border:2px solid #a946f5; +display:inline-block; +color:#ffffff; +font-size:15px; +font-weight:bold; +font-style:normal; +height:30px; +line-height:30px; +width:150px; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #8628ce; +} +.neoCssPurple:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a341ee), color-stop(1, #c579ff) ); +background:-moz-linear-gradient( center top, #a341ee 5%, #c579ff 100% ); +background-color:#a341ee; +} +.neoCssPurple:active{ +position:relative; +top:1px; +} +.neoCssGreen{ +-moz-box-shadow:inset 0px 1px 0px 0px #c1ed9c; +-webkit-box-shadow:inset 0px 1px 0px 0px #c1ed9c; +box-shadow:inset 0px 1px 0px 0px #c1ed9c; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #8cb82b) ); +background:-moz-linear-gradient( center top, #9dce2c 5%, #8cb82b 100% ); +background-color:#9dce2c; +-webkit-border-top-left-radius:15px; +-moz-border-radius-topleft:15px; +border-top-left-radius:15px; +-webkit-border-top-right-radius:15px; +-moz-border-radius-topright:15px; +border-top-right-radius:15px; +-webkit-border-bottom-right-radius:15px; +-moz-border-radius-bottomright:15px; +border-bottom-right-radius:15px; +-webkit-border-bottom-left-radius:15px; +-moz-border-radius-bottomleft:15px; +border-bottom-left-radius:15px; +text-indent:0; +border:2px solid #83c41a; +display:inline-block; +color:#ffffff; +font-size:15px; +font-weight:bold; +font-style:normal; +height:30px; +line-height:30px; +width:150px; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #689324; +} +.neoCssGreen:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) ); +background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% ); +background-color:#8cb82b; +} +.neoCssGreen:active{ +position:relative; +top:1px; +} +.neoCssRed{ +-moz-box-shadow:inset 0px 1px 0px 0px #f29c93; +-webkit-box-shadow:inset 0px 1px 0px 0px #f29c93; +box-shadow:inset 0px 1px 0px 0px #f29c93; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100) ); +background:-moz-linear-gradient( center top, #fe1a00 5%, #ce0100 100% ); +/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100');*/ +background-color:#fe1a00; +-webkit-border-top-left-radius:15px; +-moz-border-radius-topleft:15px; +border-top-left-radius:15px; +-webkit-border-top-right-radius:15px; +-moz-border-radius-topright:15px; +border-top-right-radius:15px; +-webkit-border-bottom-right-radius:15px; +-moz-border-radius-bottomright:15px; +border-bottom-right-radius:15px; +-webkit-border-bottom-left-radius:15px; +-moz-border-radius-bottomleft:15px; +border-bottom-left-radius:15px; +text-indent:0; +border:2px solid #d83526; +display:inline-block; +font-size:15px; +font-weight:bold; +font-style:normal; +height:30px; +line-height:30px; +width:150px; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #b23e35; +} +.neoCssRed:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ce0100), color-stop(1, #fe1a00) ); +background:-moz-linear-gradient( center top, #ce0100 5%, #fe1a00 100% ); +background-color:#ce0100; +}.neoCssRed:active{ +position:relative; +top:1px; +} +.neoCssPink{ +-moz-box-shadow:inset 0px 1px 0px 0px #fbafe3; +-webkit-box-shadow:inset 0px 1px 0px 0px #fbafe3; +box-shadow:inset 0px 1px 0px 0px #fbafe3; +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ff5bb0), color-stop(1, #ef027d) ); +background:-moz-linear-gradient( center top, #ff5bb0 5%, #ef027d 100% ); +background-color:#ff5bb0; +-webkit-border-top-left-radius:15px; +-moz-border-radius-topleft:15px; +border-top-left-radius:15px; +-webkit-border-top-right-radius:15px; +-moz-border-radius-topright:15px; +border-top-right-radius:15px; +-webkit-border-bottom-right-radius:15px; +-moz-border-radius-bottomright:15px; +border-bottom-right-radius:15px; +-webkit-border-bottom-left-radius:15px; +-moz-border-radius-bottomleft:15px; +border-bottom-left-radius:15px; +text-indent:0; +border:2px solid #ee1eb5; +display:inline-block; +color:#ffffff; +font-size:15px; +font-weight:bold; +font-style:normal; +height:30px; +line-height:30px; +width:150px; +text-decoration:none; +text-align:center; +text-shadow:1px 1px 0px #c70067; +} +.neoCssPink:hover{ +background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ef027d), color-stop(1, #ff5bb0) ); +background:-moz-linear-gradient( center top, #ef027d 5%, #ff5bb0 100% ); +background-color:#ef027d; +} +.neoCssPink:active{ +position:relative; +top:1px; +} +.roundbluebox{ +position:absolute; +border-radius: 15px; +background: #eaf8fc; +background-image: -moz-linear-gradient(#fff, #d4e8ec); +background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #d4e8ec),color-stop(1, #fff)); +-moz-border-radius: 35px; +border-width: 1px; +border-style: solid; +border-color: #c4d9df #a4c3ca #83afb7; +padding: 10px; +overflow: hidden; +} +.roundblue{ +border-radius: 5px; +padding: 10px; +border: 1px solid #a4c3ca; +background: #f1f1f1; +-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +overflow: hidden; +} +.roundbluetext{ +padding: 2px; +overflow: auto; +} +.roundgraybox{ +position:absolute; +background: #eaeaea; +border-width: 1px; +border-style: solid; +border-color: #D8D8D8 #A4A4A4 #A4A4A4 #D8D8D8; +padding: 10px; +overflow: hidden; +} +.roundgray{ +padding: 10px; +border: 1px solid #fff; +background: #f1f1f1; +-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); +overflow: hidden; +} +.roundgraytext{ +padding: 2px; +overflow: auto; +} +.roundboutongray{ +position : absolute; +left : 20px; +top : 20px; +border : solid 1px #E6E6E6; +background-color : #F2F2F2; +border-radius : 50%; +} +.roundboutongrayinner{ +position: relative; +width: 80px; +height: 80px; +line-height: 80px; +margin: 10px; +} +.roundboutonbef10:before{ +top: -10px; +left: -10px; +bottom: -10px; +right: -10px; +} +.roundboutonbef5:before{ +top: -5px; +left: -5px; +bottom: -5px; +right: -5px; +} +.roundboutongrayicon{ +width: 80px; +height: 80px; +background-image: url('icons/next.png'); +background-position : center center; +background-repeat : no-repeat; +background-size:cover; +opacity: 0.8; +} +.roundboutongrayicon:hover{ +transform:scale(0.95); +opacity: 0.9; +} +.roundboutongrayicon:active{ +transform:scale(0.9); +opacity: 1; +} +.roundboutongray{ +-webkit-box-sizing: border-box; +-moz-box-sizing: border-box; +box-sizing: border-box; +margin: 0; +padding: 0; +} +.roundboutongray a{ +text-decoration: none; +color: #DD6C4F; +cursor : pointer; +outline-style: none; +} +.roundboutongray a:hover{ +text-decoration:underline; +} +.roundboutongray a:focus{ +outline: none; +} +.roundboutongray li:before{ +content: ""; +display: block; +border-top: 1px solid #ddd; +border-bottom: 1px solid #fff; +width: 100%; +height: 1px; +position: absolute; +top: 50%; +z-index: -1; +} +.roundboutongray a{ +display: block; +background-color: #f7f7f7; +background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7)); +background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7); +color: #a7a7a7; +position: relative; +text-align: center; +border-radius: 50%; +box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff; +} +.roundboutongray a:before{ +content: ""; +display: block; +background: #fff; +border-top: 2px solid #ddd; +position: absolute; +z-index: -1; +border-radius: 50%; +box-shadow: inset 0px 8px 48px #ddd; +} +.roundboutongray a:hover{ +text-decoration: none; +color: #555; +background: #f5f5f5; +} +.LargegrayPanel{ +position : absolute; +width: 370px; +height: 60px; +left : 30px; +top : 50px; +border : solid 0px gray; +height: 60px; +overflow : visible; +display: inline-block; +-webkit-box-sizing: border-box; +-moz-box-sizing:border-box; +box-sizing:border-box; +margin: 0; +padding: 0; +} +.LargegrayPanelOpen{ +height: 350px; +} +.LargegrayPanelInner{ +position: absolute; +display: block; +width: 350px; +height: 40px; +margin-top: 0px; +margin: 0px; +text-decoration: none; +cursor : pointer; +background-color: #f7f7f7; +background-image: -webkit-gradient(linear,left top,left bottom,from(#f7f7f7),to(#e7e7e7)); +background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7); +border:2px solid #dcdcdc; +text-align: center; +border-radius: 10px; +box-shadow: 0px 3px 6px #BDBDBD, inset 0px 2px 3px #fff; +z-index:6; +} +.LargegrayPanelInner:hover{ +text-decoration:underline; +text-decoration: none; +background: #f5f5f5; +} +.LargegrayPanelInner:focus{ +outline: none; +} +.LargegrayPanelOpen .LargegrayPanelInner{ +height: 30px; +border-radius : 10px 10px 0px 0px; +} +.LargegrayPanelBottom{ +position: absolute; +display: block; +left:0px; +bottom:0px; +width: 350px; +height: 10px; +margin: 0px; +margin: 0px; +text-decoration: none; +cursor : pointer; +z-index:5; +background-color: #f7f7f7; +background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7)); +background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7); +border:2px solid #dcdcdc; +color: black; +text-align: center; +border-radius :0px 0px 10px 10px; +box-shadow: 0px 3px 8px #BDBDBD, inset 0px 2px 3px #fff; +} +.LargegrayPanelText{ +position: absolute; +left: 15px; +top: 30px; +bottom:13px; +right:12px; +padding:7px; +padding-top:18px; +padding-bottom:18px; +border-left : solid 1px gray; +border-right : solid 1px gray; +background-color: white; +z-index:4; +overflow : auto; +} +.LPanelSide{ +position : absolute; +top : 50px; +height : 100px; +width : 32px; +border : 2px solid #dcdcdc; +background-color : #f7f7f7; +background-image : -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7)); +background-image : -webkit-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image : -moz-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image : -ms-linear-gradient(top, #f7f7f7, #e7e7e7); +background-image : -o-linear-gradient(top, #f7f7f7, #e7e7e7); +overflow : hidden; +cursor : pointer; +font-size : 15px; +display : inline-block; +-webkit-box-sizing : border-box; +-moz-box-sizing : border-box; +box-sizing : border-box; +margin : 0; +padding : 0; +box-shadow : 0px 3px 8px #aaa, inset 0px 2px 3px #fff; +z-index : 7; +} +.LargePanelSideRight{ +right : -2px; +margin-right : 0px; +} +.LargePanelSideLeft{ +left : -2px; +margin-left : 0px; +} +.LargePanelSideVerticalText{ +position : absolute; +height : 100px; +width : 32px; +background-image: url('icons/next.png'); +background-position : center center; +background-repeat : no-repeat; +background-size:cover; +background-size:contain; +} +.PanelSideInner{ +position : absolute; +top : 0px; +bottom : 0px; +width : 380px; +padding : 10px; +padding-top : 20px; +margin-left:0px; +border-left : 1px solid #dcdcdc; +background-color : #f7f7f7; +z-index : 8; +overflow : auto; +box-shadow : 0px 3px 8px #aaa, inset 0px 2px 3px #fff; +} +.LargePanelSideInnerRight{ +right : -402px; +} +.LargePanelSideInnerLeft{ +left : -402px; +} +.PanelSideCross{ +position : absolute; +top : 0px; +right : 0px; +width : 45px; +height : 45px; +line-height :45px; +font-size : 35px; +text-align : center; +cursor : pointer; +border : 1px dotted #dcdcdc; +background-color : #FBF8EF; +opacity : 0.5; +} +.PanelSideCross:hover{ +font-size : 33px; +opacity : 1; +} +.LPanelCenter{ +position : absolute; +top : 10px; +left : 10px; +margin-left:10px; +margin-top:10px; +height : 30px; +width : 30px; +cursor : pointer; +transition: all 0.5s ease; +background-image: url('noise.png'); +z-index : 5; +} +.LPanelCenter:hover{ +margin-left:0px; +margin-top:0px; +height : 50px; +width : 50px; +} +.PanelCenterLink{ +position : absolute; +top : 10px; +left : 10px; +height : 200px; +width : 200px; +background-image: url('icons/link45.png'); +background-position : top left; +background-repeat : no-repeat; +padding:0px; +display:none; +z-index : 4; +} +.PanelCenterLink90{ +position : absolute; +top : 10px; +right : 10px; +height : 200px; +width : 200px; +background-image: url('icons/link90.png'); +background-position : top left; +background-repeat : no-repeat; +padding:0px; +display:none; +z-index : 4; +} +.LPanelCenter .p1{ +position:absolute; +top:0px;left:0px; +width:10px;height:10px; +border:2px solid gray; +border-right:none;border-bottom:none; +} +.LPanelCenter .p2{ +position:absolute; +top:0px;right:0px; +width:10px;height:10px; +border:2px solid gray; +border-left:none;border-bottom:none; +} +.LPanelCenter .p3{ +position:absolute; +bottom:0px;left:0px; +width:10px;height:10px; +border:2px solid gray; +border-right:none;border-top:none; +} +.LPanelCenter .p4{ +position:absolute; +bottom:0px;right:0px; +width:10px;height:10px; +border :2px solid gray; +border-left:none;border-top:none; +} +.PanelCenterInner{ +position : absolute; +top : 100px; +left : 100px; +bottom : 0px; +width : 280px; +height : 240px; +border-radius:10px; +padding :10px; +padding-top :20px; +padding-top :30px; +border : 4px solid #2E9AFE; +background-color : #f7f7f7; +z-index : 6; +overflow : auto; +box-shadow : 0px 3px 8px #aaa, inset 0px 2px 3px #fff; +display:none; +} +body{ +background-color:white; +} +.topludimenutransparent{ +position : absolute; +background-image: url('../fx/transparent.png'); +-webkit-border-radius: 50%; +-moz-border-radius: 50%; +border-radius: 50%; +cursor:pointer; +} +.topludimenu{ +position : absolute; +top : 35px; +left : 35px; +width: 60px; +height : 60px; +background-image: url('icons/listblackgraymid.png'); +background-position : center center; +background-repeat : no-repeat; +background-size:cover; +border: solid 1px #6E6E6E; +-webkit-border-radius: 50%; +-moz-border-radius: 50%; +border-radius: 50%; +cursor:pointer; +} +.topludimenu:hover{ +transform:scale(0.95); +opacity: 0.9; +} +.topludimenu:active{ +transform:scale(0.9); +opacity: 1; +} +.navludimenu{ +position : absolute; +display : block; +margin: 0; +padding: 0; +min-width: 185px; +border: solid 1px #b4b4b4; +-webkit-border-radius: 4px; +-moz-border-radius: 4px; +border-radius: 4px; +background: #ffffff; +background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); +background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); +background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); -webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3); +-moz-box-shadow: 0 1px 3px rgba(0,0,0, .3); +box-shadow: 0 1px 3px rgba(0,0,0, .3); +z-index : 4; +display : none; +} +.navludimenu li{ +float: none; +margin: 0; +padding: 0; +list-style: none; +cursor:pointer; +} +.navludimenu a{ +font-weight: normal; +text-shadow: 0 1px 0 #fff; +color: #333; +text-decoration: none; +display: block; +margin: 0; +border-radius: 10px; +-webkit-border-radius: 10px; +padding: 8px 20px; +cursor:pointer; +} +.navludimenu a:hover{ +background: #CED8F6; +background: -moz-linear-gradient(-45deg, #feffff 0%, #d2ebf9 100%); +background: -webkit-linear-gradient(-45deg, #feffff 0%,#d2ebf9 100%); +background: linear-gradient(135deg, #feffff 0%,#d2ebf9 100%); +} +.navludimenu:after{ +content: "."; +display: block; +clear: both; +visibility: hidden; +line-height: 0; +height: 0; +} +.blockmenu{ +position : absolute; +left : 100px; +top : 100px; +width : 420px; +height : 420px; +border-bottom : solid 1px #eaeaea; +word-wrap : break-word; +margin : 0px; +padding : 0px; +z-index : 3; +overflow : hidden; +} +.blockmenu a li{ +margin-bottom: 5px; +padding: 17px; +padding-right: 0px; +padding-left: 0px; +list-style-type: none; +word-wrap: break-word; +background: url('icons/bg-blue.png') no-repeat scroll 0 160px #eaeaea; +border: 1px solid #fff; +box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2); +color: #2e2e2e; +display: block; +float: left; +font-family: "Source sans pro"; +font-size: 20px; +font-weight: 600; +text-shadow: 0 1px 1px #fff; +transition: all 0.5s ease 0s; +margin-left:1%; +width: 98%; +cursor:pointer; +} +.blockmenu a li img{ +margin: 0 2px 0 0; +padding-left: 10px; +padding-right: 5px; +} +.blockmenualignleft{ +float: left; +text-align: left; +} +.blockmenu a li:hover{ +color: white; +background: url('icons/bg-blue.png') no-repeat scroll 0px -73px #eaeaea; +} + + +.shakeludiscape{ + animation-name: spaceboots; + animation-duration: 1s; + transform-origin:50% 50%; + animation-iteration-count: infinite; + animation-timing-function: linear; +} + +.shakeludiscape{ + -webkit-animation-name: spaceboots; + -webkit-animation-duration: 1s; + -webkit-transform-origin:50% 50%; + -webkit-animation-iteration-count: infinite; + -webkit-animation-timing-function: linear; +} + +.shakeludiscape{ + -ms-animation-name: spaceboots; + -ms-animation-duration: 1s; + -ms-transform-origin:50% 50%; + -ms-animation-iteration-count: infinite; + -ms-animation-timing-function: linear; +} + +@keyframes spaceboots { + 0% { + transform: translate(2px, 1px) rotate(0deg);} + 10% { + transform: translate(-1px, -2px) rotate(-1deg); + } + 20% { + transform: translate(-3px, 0px) rotate(1deg); + } + 30% { + transform: translate(0px, 2px) rotate(0deg); + } + 40% { + transform: translate(1px, -1px) rotate(1deg); + } + 50% { + transform: translate(-1px, 2px) rotate(-1deg); + } + 60% { + transform: translate(-3px, 1px) rotate(0deg); + } + 70% { + transform: translate(2px, 1px) rotate(-1deg); + } + 80% { + transform: translate(-1px, -1px) rotate(1deg); + } + 90% { + transform: translate(2px, 2px) rotate(0deg); + } + 100% { + transform: translate(1px, -2px) rotate(-1deg); + } +} + +@-webkit-keyframes spaceboots { + 0% { + -webkit-transform: translate(2px, 1px) rotate(0deg);} + 10% { + -webkit-transform: translate(-1px, -2px) rotate(-1deg); + } + 20% { + -webkit-transform: translate(-3px, 0px) rotate(1deg); + } + 30% { + -webkit-transform: translate(0px, 2px) rotate(0deg); + } + 40% { + -webkit-transform: translate(1px, -1px) rotate(1deg); + } + 50% { + -webkit-transform: translate(-1px, 2px) rotate(-1deg); + } + 60% { + -webkit-transform: translate(-3px, 1px) rotate(0deg); + } + 70% { + -webkit-transform: translate(2px, 1px) rotate(-1deg); + } + 80% { + -webkit-transform: translate(-1px, -1px) rotate(1deg); + } + 90% { + -webkit-transform: translate(2px, 2px) rotate(0deg); + } + 100% { + -webkit-transform: translate(1px, -2px) rotate(-1deg); + } +} + +@-ms-keyframes spaceboots { + 0% { + -ms-transform: translate(2px, 1px) rotate(0deg);} + 10% { + -ms-transform: translate(-1px, -2px) rotate(-1deg); + } + 20% { + -ms-transform: translate(-3px, 0px) rotate(1deg); + } + 30% { + -ms-transform: translate(0px, 2px) rotate(0deg); + } + 40% { + -ms-transform: translate(1px, -1px) rotate(1deg); + } + 50% { + -ms-transform: translate(-1px, 2px) rotate(-1deg); + } + 60% { + -ms-transform: translate(-3px, 1px) rotate(0deg); + } + 70% { + -ms-transform: translate(2px, 1px) rotate(-1deg); + } + 80% { + -ms-transform: translate(-1px, -1px) rotate(1deg); + } + 90% { + -ms-transform: translate(2px, 2px) rotate(0deg); + } + 100% { + -ms-transform: translate(1px, -2px) rotate(-1deg); + } +} + +/** + * http://animista.net/play/attention/jello + * animation bounce-in-top + * ---------------------------------------- + */ + +.bounce-in-top { + -webkit-animation: bounce-in-top 1.1s 1s both; + animation: bounce-in-top 1.1s 1s both; + -ms-animation : bounce-in-top 1.1s 1s both; +} +@-webkit-keyframes bounce-in-top { + 0% { + -webkit-transform: translateY(-500px); + transform: translateY(-500px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + 38% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + opacity: 1; + } + 55% { + -webkit-transform: translateY(-65px); + transform: translateY(-65px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 72% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 81% { + -webkit-transform: translateY(-28px); + transform: translateY(-28px); + -webkit-animation-timing-function: ease-in; + } + 90% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 95% { + -webkit-transform: translateY(-8px); + transform: translateY(-8px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} +@keyframes bounce-in-top { + 0% { + -webkit-transform: translateY(-500px); + transform: translateY(-500px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + 38% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + opacity: 1; + } + 55% { + -webkit-transform: translateY(-65px); + transform: translateY(-65px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 72% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 81% { + -webkit-transform: translateY(-28px); + transform: translateY(-28px); + -webkit-animation-timing-function: ease-in; + } + 90% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 95% { + -webkit-transform: translateY(-8px); + transform: translateY(-8px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} +@-ms-keyframes bounce-in-top { + 0% { + -ms-transform: translateY(-500px); + transform: translateY(-500px); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + 38% { + -ms-transform: translateY(0); + transform: translateY(0); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + opacity: 1; + } + 55% { + -ms-transform: translateY(-65px); + transform: translateY(-65px); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 72% { + -ms-transform: translateY(0); + transform: translateY(0); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 81% { + -ms-transform: translateY(-28px); + transform: translateY(-28px); + -ms-animation-timing-function: ease-in; + } + 90% { + -ms-transform: translateY(0); + transform: translateY(0); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 95% { + -ms-transform: translateY(-8px); + transform: translateY(-8px); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 100% { + -ms-transform: translateY(0); + transform: translateY(0); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} + +.slideludiscape{ + -webkit-animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; + animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; + -ms-animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; +} +@-webkit-keyframes slide-in-elliptic-top-fwd { + 0% { + -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0); + transform: translateY(-600px) rotateX(-30deg) scale(0); + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + opacity: 0; + } + 100% { + -webkit-transform: translateY(0) rotateX(0) scale(1); + transform: translateY(0) rotateX(0) scale(1); + -webkit-transform-origin: 50% 1400px; + transform-origin: 50% 1400px; + opacity: 1; + } +} +@-ms-keyframes slide-in-elliptic-top-fwd { + 0% { + -ms-transform: translateY(-600px) rotateX(-30deg) scale(0); + transform: translateY(-600px) rotateX(-30deg) scale(0); + -ms-transform-origin: 50% 100%; + transform-origin: 50% 100%; + opacity: 0; + } + 100% { + -ms-transform: translateY(0) rotateX(0) scale(1); + transform: translateY(0) rotateX(0) scale(1); + -ms-transform-origin: 50% 1400px; + transform-origin: 50% 1400px; + opacity: 1; + } +} +@keyframes slide-in-elliptic-top-fwd { + 0% { + -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0); + transform: translateY(-600px) rotateX(-30deg) scale(0); + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + opacity: 0; + } + 100% { + -webkit-transform: translateY(0) rotateX(0) scale(1); + transform: translateY(0) rotateX(0) scale(1); + -webkit-transform-origin: 50% 1400px; + transform-origin: 50% 1400px; + opacity: 1; + } +} + +.heartbeatludiscape{ + -webkit-animation: heartbeat 1.5s ease-in-out infinite both; + animation: heartbeat 1.5s ease-in-out infinite both; + -ms-animation: heartbeat 1.5s ease-in-out infinite both; +} +@-ms-keyframes heartbeat { + from { + -ms-transform: scale(1); + transform: scale(1); + -ms-transform-origin: center center; + transform-origin: center center; + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 10% { + -ms-transform: scale(0.91); + transform: scale(0.91); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 17% { + -ms-transform: scale(0.98); + transform: scale(0.98); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 33% { + -ms-transform: scale(0.87); + transform: scale(0.87); + -ms-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 45% { + -ms-transform: scale(1); + transform: scale(1); + -ms-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} +@-webkit-keyframes heartbeat { + from { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 10% { + -webkit-transform: scale(0.91); + transform: scale(0.91); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 17% { + -webkit-transform: scale(0.98); + transform: scale(0.98); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 33% { + -webkit-transform: scale(0.87); + transform: scale(0.87); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 45% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} +@keyframes heartbeat { + from { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-transform-origin: center center; + transform-origin: center center; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 10% { + -webkit-transform: scale(0.91); + transform: scale(0.91); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 17% { + -webkit-transform: scale(0.98); + transform: scale(0.98); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + 33% { + -webkit-transform: scale(0.87); + transform: scale(0.87); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 45% { + -webkit-transform: scale(1); + transform: scale(1); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } +} diff --git a/scorm-s-integrer-ds-equipe/css/material.css b/scorm-s-integrer-ds-equipe/css/material.css new file mode 100644 index 0000000..a78ef18 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/material.css @@ -0,0 +1,149 @@ + +.mat-shadows-a{ + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} + +.mat-shadows-b{ + box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); + transition: all 0.3s cubic-bezier(.25,.8,.25,1); +} + +.mat-shadows-b:hover { + box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); +} + +.slidevolde{ + margin-top:-1000px; +} + +/*button*/ + +.mat-slide{ + transition: all .5s ease-out; +} + +.mat-button{ + position : absolute; + color: #FFF; + width: 56px; + height: 56px; + font-size: 28px; + border-radius: 50%; + box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.3); + overflow: hidden; + cursor: pointer; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + border: none; + user-select: none; + white-space: nowrap; + outline: none; + align-items: flex-start; + transition: all .3s ease-out; +} + +.mat-button, .mat-button::after, .mat-button::before { + -ms-box-sizing: border-box; + -o-box-sizing: border-box; + box-sizing: border-box; +} + +.mat-button:hover { + box-shadow: 0 4px 11px 0px rgba(0, 0, 0, 0.375); + background-color: #23b9fc; +} +.material-icon{ + position : absolute; + left:0px; + top:0px; + right:0px; + bottom:0px; + background-image: url(img/right-button.png); + background-position: center center; + background-repeat: no-repeat; +} + +/*flip card*/ + +/* entire container, keeps perspective */ +.flipcard-container{ + perspective: 1000px; + -ms-perspective: 1000px; +} +/* flip the pane when hovered */ +.flipcard-container.flipcard-hover .flipcard-flipper{ + transform: rotateY(180deg); + -ms-transform: rotateY(180deg); + -webkit-transform: rotateY(180deg); +} + +.flipcard-question{ + background-image: url(question_mark.png); + background-position: center center; + background-repeat: no-repeat; +} +.flipcard-image{ + + background-size: contain; + background-repeat: no-repeat; + background-position: center center; +} + +.flipcard-container{ + position:absolute; + left:50px; + top:50px; + width: 320px; + height: 320px; +} + +.flipcard-front,.flipcard-back{ + position: relative; + width: 320px; + height: 320px; + text-align: center; + cursor:pointer; + border-radius:5px; + overflow: hidden; + background-color:white; +} +.flipcard-front{ + border:solid 1px #D8D8D8; +} +.flipcard-back{ + border:solid 1px gray; +} + +/* flip speed goes here */ +.flipcard-flipper{ + transition: 0.7s; + transform-style: preserve-3d; + -ms-transition: 0.7s; + -ms-transform-style: preserve-3d; + position: relative; +} + +/* hide back of pane during swap */ +.flipcard-front, .flipcard-back{ + backface-visibility: hidden; + position: absolute; + top: 0; + left: 0; +} + +/* front pane, placed above back */ +.flipcard-front{ + z-index: 2; + transform: rotateY(0deg); + -ms-transform: rotateY(0deg); +} + +/* back, initially hidden pane */ +.flipcard-back { + transform: rotateY(180deg); + -ms-transform: rotateY(180deg); +} + diff --git a/scorm-s-integrer-ds-equipe/css/menuludi.css b/scorm-s-integrer-ds-equipe/css/menuludi.css new file mode 100644 index 0000000..24ccd4f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/menuludi.css @@ -0,0 +1,94 @@ + +body{ + background-color:white; +} + +.topludimenutransparent{ + position : absolute; + background-image: url('../fx/transparent.png'); + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; + cursor:pointer; +} + +.topludimenu { + position : absolute; + top : 35px; + left : 35px; + width: 60px; + height : 60px; + background-image: url('icons/listblackgraymid.png'); + background-position : center center; + background-repeat : no-repeat; + background-size:cover; + border: solid 1px #6E6E6E; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; + cursor:pointer; +} +.topludimenu:hover{ + transform:scale(0.95); + opacity: 0.9; +} +.topludimenu:active{ + transform:scale(0.9); + opacity: 1; +} + +.navludimenu { + position : absolute; + display : block; + margin: 0; + padding: 0; + min-width: 185px; + border: solid 1px #b4b4b4; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + background: #ffffff; + background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); + background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); + background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); -webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3); + -moz-box-shadow: 0 1px 3px rgba(0,0,0, .3); + box-shadow: 0 1px 3px rgba(0,0,0, .3); + z-index : 4; + display : none; +} + +.navludimenu li { + float: none; + margin: 0; + padding: 0; + list-style: none; + cursor:pointer; +} + +.navludimenu a { + font-weight: normal; + text-shadow: 0 1px 0 #fff; + color: #333; + text-decoration: none; + display: block; + margin: 0; + border-radius: 10px; + -webkit-border-radius: 10px; + padding: 8px 20px; + cursor:pointer; +} + +.navludimenu a:hover { + background: #CED8F6; + background: -moz-linear-gradient(-45deg, #feffff 0%, #d2ebf9 100%); + background: -webkit-linear-gradient(-45deg, #feffff 0%,#d2ebf9 100%); + background: linear-gradient(135deg, #feffff 0%,#d2ebf9 100%); +} +.navludimenu:after { + content: "."; + display: block; + clear: both; + visibility: hidden; + line-height: 0; + height: 0; +} diff --git a/scorm-s-integrer-ds-equipe/css/noise.png b/scorm-s-integrer-ds-equipe/css/noise.png new file mode 100644 index 0000000..0be06a3 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/noise.png differ diff --git a/scorm-s-integrer-ds-equipe/css/panelcenter.css b/scorm-s-integrer-ds-equipe/css/panelcenter.css new file mode 100644 index 0000000..71c48e4 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/panelcenter.css @@ -0,0 +1,96 @@ + +.LPanelCenter{ + position : absolute; + top : 10px; + left : 10px; + margin-left:10px; + margin-top:10px; + height : 30px; + width : 30px; + cursor : pointer; + transition: all 0.5s ease; + background-image: url('noise.png'); + z-index : 5; +} + +.LPanelCenter:hover{ + margin-left:0px; + margin-top:0px; + height : 50px; + width : 50px; +} + +.PanelCenterLink{ + position : absolute; + top : 10px; + left : 10px; + height : 200px; + width : 200px; + background-image: url('icons/link45.png'); + background-position : top left; + background-repeat : no-repeat; + padding:0px; + display:none; + z-index : 4; +} +.PanelCenterLink90{ + position : absolute; + top : 10px; + right : 10px; + height : 200px; + width : 200px; + background-image: url('icons/link90.png'); + background-position : top left; + background-repeat : no-repeat; + padding:0px; + display:none; + z-index : 4; +} + +.LPanelCenter .p1{ + position:absolute; + top:0px;left:0px; + width:10px;height:10px; + border:2px solid gray; + border-right:none;border-bottom:none; +} +.LPanelCenter .p2{ + position:absolute; + top:0px;right:0px; + width:10px;height:10px; + border:2px solid gray; + border-left:none;border-bottom:none; +} +.LPanelCenter .p3{ + position:absolute; + bottom:0px;left:0px; + width:10px;height:10px; + border:2px solid gray; + border-right:none;border-top:none; +} +.LPanelCenter .p4{ + position:absolute; + bottom:0px;right:0px; + width:10px;height:10px; + border :2px solid gray; + border-left:none;border-top:none; +} + +.PanelCenterInner{ + position : absolute; + top : 100px; + left : 100px; + bottom : 0px; + width : 280px; + height : 240px; + border-radius:10px; + padding :10px; + padding-top :20px; + padding-top :30px; + border : 4px solid #2E9AFE; + background-color : #f7f7f7; + z-index : 6; + overflow : auto; + box-shadow : 0px 3px 8px #aaa, inset 0px 2px 3px #fff; + display:none; +} diff --git a/scorm-s-integrer-ds-equipe/css/panelshow.css b/scorm-s-integrer-ds-equipe/css/panelshow.css new file mode 100644 index 0000000..f8b295f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/panelshow.css @@ -0,0 +1,97 @@ + +.LargegrayPanel { + position : absolute; + width: 370px; + height: 60px; + left : 30px; + top : 50px; + border : solid 0px gray; + height: 60px; + overflow : visible; + display: inline-block; + -webkit-box-sizing: border-box; + -moz-box-sizing:border-box; + box-sizing:border-box; + margin: 0; + padding: 0; +} + +.LargegrayPanelOpen { + height: 350px; +} + +.LargegrayPanelInner{ + position: absolute; + display: block; + width: 350px; + height: 40px; + margin-top: 0px; + margin: 0px; + text-decoration: none; + cursor : pointer; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear,left top,left bottom,from(#f7f7f7),to(#e7e7e7)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7); + border:2px solid #dcdcdc; + text-align: center; + border-radius: 10px; + box-shadow: 0px 3px 6px #BDBDBD, inset 0px 2px 3px #fff; + z-index:6; +} +.LargegrayPanelInner:hover { + text-decoration:underline; + text-decoration: none; + background: #f5f5f5; +} +.LargegrayPanelInner:focus { + outline: none; +} + +.LargegrayPanelOpen .LargegrayPanelInner{ + height: 30px; + border-radius : 10px 10px 0px 0px; +} + +.LargegrayPanelBottom{ + position: absolute; + display: block; + left:0px; + bottom:0px; + width: 350px; + height: 10px; + margin: 0px; + margin: 0px; + text-decoration: none; + cursor : pointer; + z-index:5; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7); + border:2px solid #dcdcdc; + color: black; + text-align: center; + border-radius :0px 0px 10px 10px; + box-shadow: 0px 3px 8px #BDBDBD, inset 0px 2px 3px #fff; +} + +.LargegrayPanelText{ + position: absolute; + left: 15px; + top: 30px; + bottom:13px; + right:12px; + padding:7px; + padding-top:18px; + padding-bottom:18px; + border-left : solid 1px gray; + border-right : solid 1px gray; + background-color: white; + z-index:4; + overflow : auto; +} diff --git a/scorm-s-integrer-ds-equipe/css/panelside.css b/scorm-s-integrer-ds-equipe/css/panelside.css new file mode 100644 index 0000000..4fe3c8f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/panelside.css @@ -0,0 +1,86 @@ + +.LPanelSide{ + position : absolute; + top : 50px; + height : 100px; + width : 32px; + border : 2px solid #dcdcdc; + background-color : #f7f7f7; + background-image : -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7)); + background-image : -webkit-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image : -moz-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image : -ms-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image : -o-linear-gradient(top, #f7f7f7, #e7e7e7); + overflow : hidden; + cursor : pointer; + font-size : 15px; + display : inline-block; + -webkit-box-sizing : border-box; + -moz-box-sizing : border-box; + box-sizing : border-box; + margin : 0; + padding : 0; + box-shadow : 0px 3px 8px #aaa, inset 0px 2px 3px #fff; + z-index : 7; +} + +.LargePanelSideRight{ + right : -2px; + margin-right : 0px; +} +.LargePanelSideLeft{ + left : -2px; + margin-left : 0px; +} + +.LargePanelSideVerticalText { + position : absolute; + height : 100px; + width : 32px; + background-image: url('icons/next.png'); + background-position : center center; + background-repeat : no-repeat; + background-size:cover; + background-size:contain; +} + +.PanelSideInner{ + position : absolute; + top : 0px; + bottom : 0px; + width : 380px; + padding : 10px; + padding-top : 20px; + margin-left:0px; + border-left : 1px solid #dcdcdc; + background-color : #f7f7f7; + z-index : 8; + overflow : auto; + box-shadow : 0px 3px 8px #aaa, inset 0px 2px 3px #fff; +} + +.LargePanelSideInnerRight{ + right : -402px; +} +.LargePanelSideInnerLeft{ + left : -402px; +} + +.PanelSideCross{ + position : absolute; + top : 0px; + right : 0px; + width : 45px; + height : 45px; + line-height :45px; + font-size : 35px; + text-align : center; + cursor : pointer; + border : 1px dotted #dcdcdc; + background-color : #FBF8EF; + opacity : 0.5; +} +.PanelSideCross:hover{ + font-size : 33px; + opacity : 1; +} diff --git a/scorm-s-integrer-ds-equipe/css/roundbutton.css b/scorm-s-integrer-ds-equipe/css/roundbutton.css new file mode 100644 index 0000000..33aadbc --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/roundbutton.css @@ -0,0 +1,116 @@ + +.roundboutongray { + position : absolute; + left : 20px; + top : 20px; + border : solid 1px #E6E6E6; + background-color : #F2F2F2; + border-radius : 50%; +} + +.roundboutongrayinner{ + position: relative; + width: 80px; + height: 80px; + line-height: 80px; + margin: 10px; +} +.roundboutonbef10:before { + top: -10px; + left: -10px; + bottom: -10px; + right: -10px; +} +.roundboutonbef5:before { + top: -5px; + left: -5px; + bottom: -5px; + right: -5px; +} + +.roundboutongrayicon{ + width: 80px; + height: 80px; + background-image: url('icons/next.png'); + background-position : center center; + background-repeat : no-repeat; + background-size:cover; + opacity: 0.8; +} +.roundboutongrayicon:hover{ + transform:scale(0.95); + opacity: 0.9; +} +.roundboutongrayicon:active{ + transform:scale(0.9); + opacity: 1; +} + + + +.roundboutongray{ + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + margin: 0; + padding: 0; +} + +.roundboutongray a { + text-decoration: none; + color: #DD6C4F; + cursor : pointer; + outline-style: none; +} + +.roundboutongray a:hover { + text-decoration:underline; +} + +.roundboutongray a:focus { + outline: none; +} + +.roundboutongray li:before { + content: ""; + display: block; + border-top: 1px solid #ddd; + border-bottom: 1px solid #fff; + width: 100%; + height: 1px; + position: absolute; + top: 50%; + z-index: -1; +} + +.roundboutongray a { + display: block; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7); + background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7); + color: #a7a7a7; + position: relative; + text-align: center; + border-radius: 50%; + box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff; +} + +.roundboutongray a:before { + content: ""; + display: block; + background: #fff; + border-top: 2px solid #ddd; + position: absolute; + z-index: -1; + border-radius: 50%; + box-shadow: inset 0px 8px 48px #ddd; +} + +.roundboutongray a:hover { + text-decoration: none; + color: #555; + background: #f5f5f5; +} \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/css/scrool.css b/scorm-s-integrer-ds-equipe/css/scrool.css new file mode 100644 index 0000000..4325dff --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/scrool.css @@ -0,0 +1,26 @@ + +.viewport { +width: 90%; +height: 200px; +overflow: hidden; +left: 0; +position: absolute; +border:solid 0px gray; +} + +.overview { +list-style: none; +position: absolute; +left: 0; +top: 0; +padding: 0; +margin: 0; +width: 90%; +border:solid 0px gray; +} + +.scrollbar{ background: transparent url(bg-scrollbar-track-y.png) no-repeat 0 0; position: relative; background-position: 0 0; float: right; width: 15px; } +.track { background: transparent url(bg-scrollbar-trackend-y.png) no-repeat 0 100%; height: 100%; width:13px; position: relative; padding: 0 1px; } +.thumb { background: transparent url(bg-scrollbar-thumb-y.png) no-repeat 50% 100%; height: 20px; width: 25px; cursor: pointer; overflow: hidden; position: absolute; top: 0; left: -5px; } +.thumb .end { background: transparent url(bg-scrollbar-thumb-y.png) no-repeat 50% 0; overflow: hidden; height: 5px; width: 25px; } +.disable { display: none; } \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/css/styles.css b/scorm-s-integrer-ds-equipe/css/styles.css new file mode 100644 index 0000000..6e981cb --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/styles.css @@ -0,0 +1,664 @@ + +body{ + position:absolute; + padding:0px; + margin:0px; + border:solid 0px blue; + left:0px; + right:0px; + top:0px; + bottom:0px; + padding:0; + margin:0; + background-attachment: fixed; + font-size-adjust: none; + -webkit-text-size-adjust: none !important; +} +body{ + touch-action: none; + -ms-touch-action: none !important; /* DISABLE DOUBLE-TAP-ZOOM */ + -ms-content-zooming: none; + -ms-scroll-rails: none; + font-size-adjust: none; +} +#main{ + touch-action: none; + -ms-touch-action: none !important;/* DISABLE DOUBLE-TAP-ZOOM */ + -ms-content-zooming: none; + -ms-scroll-rails: none; + font-size-adjust: none; + background:white; +} +.wrap90{ + transform : rotate(-90deg); + transform-origin :left top; + position : absolute; +} +@-webkit-viewport{ + width : device-width; +} +@-moz-viewport{ + width : device-width; +} +@-ms-viewport{ + width : device-width; + zoom : 1; + max-zoom : 1; + min-zoom : 1; +} +@-o-viewport{ + width: device-width; +} +@viewport{ + width: device-width; +} + +.bodyflou{ + color:transparent; + text-shadow:0 0 5px #333; + filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=2)\9 !important; + -ms-filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=2)\9 !important; + opacity: 1\9 !important; +} + +#globalcurtainanim , #globalcurtainanim2{ + background-position:center center; + background-size:100% 100%; + background-size:cover; + -webkit-background-size: cover; + -moz-background-size: cover; + -o-background-size: cover; + background-size: cover; + background-repeat:no-repeat; + position:absolute; + z-index : 102; +} + + + + +/*{UOD}*/ + +.selecttcm{ + -webkit-appearance: none; + font-style: italic; +} + +.textarea { + position:absolute; + border: 1px solid black; + padding:0px; + margin:0px; +} +.textarea td{ + padding:0px; + margin:0px; +} + +.unselectable { + -moz-user-select: none; /* for FireFox */ + -webkit-user-select: none; /* for Chrome and Safari */ + -khtml-user-select: none; /* probably old webkit browsers, but new support it too */ + user-select: none; /* for future CSS3 compliant browsers */ +} + + +input[type="text"] { + padding: 1px 0px; + -webkit-appearance: textfield; + padding: 1px; + background-color: white; + border-image: initial; + -webkit-rtl-ordering: logical; + -webkit-user-select: text; + cursor: auto; + border: 1px solid black; +} + +p{ + padding:5px; + margin:0px; +} +a{ + outline:none; +} +img{ + outline:none; +} +img { + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -o-user-select: none; + user-select: none; +} +a { + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -o-user-select: none; + user-select: none; +} +.labelconn{ + color:white; + font-size:18px; +} +.labelconnblack{ + color:black; + font-size:16px; +} +.labelconntitle{ + color:black; + font-size:18px; +} + +.inputconn{ + padding: 1px 0px; + -webkit-appearance: textfield; + padding: 1px; + background-color: white; + border-image: initial; + -webkit-rtl-ordering: logical; + -webkit-user-select: text; + cursor: auto; + width:95%; + max-width: 250px; + border: 1px solid black; + font-size:18px; +} + +table{ + padding:0; + margin:0; +} + +.bloc{ + position:absolute; + width:8px; + height:8px; + top:0px; + left:0px; + border:solid 0px red; +} + +#loadbloc{ + position : absolute; + width : 60px; + height : 60px; + top : 50%; + left : 50%; + margin-left : -30px; + margin-top : -32px; + z-index:0; + color: gray; + font-size: 50px; + text-align:center; +} + + +.loadludi{ + position : absolute; + width : 250px; + height : 95px; + top : 50%; + left : 50%; + margin-left : -125px; + margin-top : -50px; + border-radius: 5px; + z-index:2000; + font-size: 10px; + text-align:center; + border:solid 2px #708090; + background-color: white; + background-position: 35px 18px; + background-repeat: no-repeat; +} +.minibar{ + position : absolute; + left:35px; + top:70px; + width : 180px; + height : 4px; + border-radius: 2px; + border:solid 1px gray; + overflow:hidden; +} +.evolminibar{ + position : absolute; + left:0px; + top:0px; + width : 2px; + height : 5px; + background-color:#8CBEE3; +} + +.loadludi2{ + position : absolute; + width : 100%; + height : 210px; + top : 50%; + left : 0%; + right : 0%; + margin-left : 0px; + margin-top : -105px; + border-radius: 5px; + z-index:2000; + font-size: 10px; + text-align:center; + border:solid 2px #708090; + background-color: white; + background-position: center 55px; + background-repeat: no-repeat; +} +.minibar2{ + position : absolute; + left:50%; + bottom:50px; + width : 180px; + margin-left:-90px; + height : 20px; + border-radius: 10px; + border:solid 1px gray; + overflow:hidden; +} +.evolminibar2{ + position : absolute; + left:0px; + top:0px; + width : 2px; + height : 21px; + background-color:#8CBEE3; +} + + +.domobject{ + position:absolute; + z-index:5; +} + +#main{ + background-color : #F2F2F2; + background-repeat:no-repeat; + background-position:center; + overflow : hidden; +} + +#loaddiv{ + background-repeat:no-repeat; + background-position:center; + opacity:0.6; + filter:alpha(opacity=60);/* For IE8 and earlier */ + overflow : hidden; + z-index : 100; +} + +#loaddivbarre{ + background-color : transparent; + background-repeat:no-repeat; + background-position:center; + background-image:url("ajax_loader_blue.gif"); + overflow : hidden; + z-index : 100; +} + + +.textshadow{ + text-shadow: gray 0.1em 0.1em 0.2em; +} + +.gradient_blue{ + /*http://www.colorzilla.com/gradient-editor/*/ + background: #e4f5fc; /* Old browsers */ + background: -moz-linear-gradient(top, #e4f5fc 0%, #bfe8f9 50%, #9fd8ef 51%, #2ab0ed 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4f5fc), color-stop(50%,#bfe8f9), color-stop(51%,#9fd8ef), color-stop(100%,#2ab0ed)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%); /* IE10+ */ + background: linear-gradient(top, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4f5fc', endColorstr='#2ab0ed',GradientType=0 ); /* IE6-9 */ +} + +.gradient_gray{ + background: #e2e2e2; /* Old browsers */ + background: -moz-linear-gradient(top, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2e2e2), color-stop(50%,#dbdbdb), color-stop(51%,#d1d1d1), color-stop(100%,#fefefe)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* IE10+ */ + background: linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#fefefe',GradientType=0 ); /* IE6-9 */ +} + +.gradient_purple{ + background: #ebe9f9; /* Old browsers */ + background: -moz-linear-gradient(top, #ebe9f9 0%, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebe9f9), color-stop(50%,#d8d0ef), color-stop(51%,#cec7ec), color-stop(100%,#c1bfea)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* IE10+ */ + background: linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebe9f9', endColorstr='#c1bfea',GradientType=0 ); /* IE6-9 */ +} + +.gradient_white{ + background: #ffffff; /* Old browsers */ + background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#f3f3f3), color-stop(51%,#ededed), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* IE10+ */ + background: linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */ +} + +.gradient_green{ + background: #e6f0a3; /* Old browsers */ + background: -moz-linear-gradient(top, #e6f0a3 0%, #d2e638 50%, #c3d825 51%, #dbf043 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6f0a3), color-stop(50%,#d2e638), color-stop(51%,#c3d825), color-stop(100%,#dbf043)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #e6f0a3 0%,#d2e638 50%,#c3d825 51%,#dbf043 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #e6f0a3 0%,#d2e638 50%,#c3d825 51%,#dbf043 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #e6f0a3 0%,#d2e638 50%,#c3d825 51%,#dbf043 100%); /* IE10+ */ + background: linear-gradient(top, #e6f0a3 0%,#d2e638 50%,#c3d825 51%,#dbf043 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6f0a3', endColorstr='#dbf043',GradientType=0 ); /* IE6-9 */ +} + +.gradient_orange{ + background: rgb(252,234,187); /* Old browsers */ + background: -moz-linear-gradient(top, rgba(252,234,187,1) 0%, rgba(252,205,77,1) 50%, rgba(248,181,0,1) 51%, rgba(251,223,147,1) 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,234,187,1)), color-stop(50%,rgba(252,205,77,1)), color-stop(51%,rgba(248,181,0,1)), color-stop(100%,rgba(251,223,147,1))); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, rgba(252,234,187,1) 0%,rgba(252,205,77,1) 50%,rgba(248,181,0,1) 51%,rgba(251,223,147,1) 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, rgba(252,234,187,1) 0%,rgba(252,205,77,1) 50%,rgba(248,181,0,1) 51%,rgba(251,223,147,1) 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, rgba(252,234,187,1) 0%,rgba(252,205,77,1) 50%,rgba(248,181,0,1) 51%,rgba(251,223,147,1) 100%); /* IE10+ */ + background: linear-gradient(top, rgba(252,234,187,1) 0%,rgba(252,205,77,1) 50%,rgba(248,181,0,1) 51%,rgba(251,223,147,1) 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fceabb', endColorstr='#fbdf93',GradientType=0 ); /* IE6-9 */ +} + +.round{ + text-align:center; + border-radius: 0.1em; + -moz-border-radius: 0.1em; + -webkit-border-radius: 0.1em; +} + + +.preloadimg{ + position:absolute; + left:2px; + bottom:2px; + width:30px; + height:30px; +} + +.preloadclock{ + position:absolute; + right:2px; + top:2px; + width:30px; + height:30px; +} + +.qcmn{ + background : url("../fx/transparent.png") top center; + min-height:10px; + min-width:10px; +} +.qcmx{ + background : url("../fx/transparent.png") top center; + min-height:10px; + min-width:10px; +} + +.qcmcoche{ + position : relative; +} + +.cochecase{ + z-index:4; + font-weight:bold; + text-align:center; +} + +.cocheimg{ + position:absolute; + left : 0px; + top : 0px; + /*opacity:0.4; + filter:alpha(opacity=40);*/ +} + +.barresty{ + border:solid 1px gray; + + -moz-border-radius: 25px; + -moz-border-radius: 25px; + + -khtml-border-radius: 25px; + -khtml-border-radius: 25px; + + -webkit-border-radius: 25px; + -webkit-border-radius: 25px; + + border-radius: 25px; + border-radius: 25px; +} + +.libellegauge{ + text-align:right; +} + +.notegauge{ + position:absolute; + top:0px; + right:0px; + margin-right:50px; + font-size:10; +} + +.btnslideright{ + position:absolute; + top:0px; + left:0px; + background:url("../fx/rightslide.png") center center; + width:36px; + height:100px; + cursor:pointer; + z-index:4; +} + +.btnslideleft{ + position:absolute; + top:0px; + left:0px; + background:url("../fx/leftslide.png") center center; + width:36px; + height:100px; + cursor:pointer; + z-index:4; +} + +.instaplan{ + overflow:hidden; +} + +.instaplantitle{ + position:absolute; + right : 0px; + bottom : 0px; + width:120px; + height:15px; + padding:2px; + text-align:center; + background:black; + border: solid 1px gray; + font-size:12px; + color:white; + z-index:1000000; +} + + + +#cadreheader { + background-image:url("glow.png"); + background-position: center top; + background-repeat:no-repeat; +} + +#cadrefooter { + background-image:url("glow2.png"); + background-position: center top; + background-repeat:no-repeat; +} + +.autm{ + width : 98%; + display:block; + padding:0.2em; + padding-left:1%; + padding-right:0; + margin:0; + border-bottom: solid 1px gray; + text-decoration:none; + border-radius:0.3em; +} + +.autm:hover{ + font-weight:bold; +} + +.rptColHorizon{ + position : relative; + border-top: solid 1px gray; + width : 100%; + height:20%; + font-size: 8px; +} +#xapiTitle{ + display:none; +} +#xapiActivityID{ + display:none; +} + + +a.tooltipsred { + position: absolute; + display: inline; +} +a.tooltipsred span { + position: absolute; + width:140px; + color: #FFFFFF; + background: #FF1C42; + height: 30px; + line-height: 30px; + text-align: center; + visibility: visible; + border-radius: 6px; + opacity: 0.8; + bottom: 30px; + left: 50%; + margin-left: -76px; + z-index: 999; +} +a.tooltipsred span:after { + content: ''; + position: absolute; + top: 100%; + left: 50%; + margin-left: -8px; + width: 0; height: 0; + border-top: 8px solid #FF1C42; + border-right: 8px solid transparent; + border-left: 8px solid transparent; +} +a:hover.tooltipsred span { + visibility: visible; + opacity: 0.8; + bottom: 30px; + left: 50%; + margin-left: -76px; + z-index: 999; +} + +a.tooltipsgreen { + position: absolute; + display: inline; +} +a.tooltipsgreen span { + position: absolute; + width:140px; + color: #000000; + background: #7DFF26; + height: 30px; + line-height: 30px; + text-align: center; + visibility: visible; + border-radius: 6px; + opacity: 0.8; + bottom: 30px; + left: 50%; + margin-left: -76px; + z-index: 999; +} +a.tooltipsgreen span:after { + content: ''; + position: absolute; + top: 100%; + left: 50%; + margin-left: -8px; + width: 0; height: 0; + border-top: 8px solid #7DFF26; + border-right: 8px solid transparent; + border-left: 8px solid transparent; +} +a:hover.tooltipsgreen span { + visibility: visible; + opacity: 0.8; + bottom: 30px; + left: 50%; + margin-left: -76px; + z-index: 999; +} + +.divopacover{ + position:absolute; + left :0px; + top:0px; + right: 0px; + bottom: 0px; + background: #6E6E6E; + opacity : 0.6; + display : none; + z-index : 3; +} +.divwindowsligth{ + position:absolute; + left :0px; + top:0px; + width:450px; + height:450px; + background: white; + overflow: hidden; + opacity : 0; + display : none; + border:1px solid #585858; + border-radius:5px; + z-index : 3; +} +.divwindowsligthclose{ + position: absolute; + background-image:url("../fx/closeminifenetre.png"); + background-position: center center; + background-repeat:no-repeat; + cursor:pointer; + top: 0px; + bottom: 0px; + right: 0px; + width: 32px; +} + + +.videonc::-webkit-media-controls +{ + display:none !important; +} diff --git a/scorm-s-integrer-ds-equipe/css/test.html b/scorm-s-integrer-ds-equipe/css/test.html new file mode 100644 index 0000000..b51d598 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/test.html @@ -0,0 +1,51 @@ + + + + +a_demo_four + + + \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/css/textbox.css b/scorm-s-integrer-ds-equipe/css/textbox.css new file mode 100644 index 0000000..94cc9a8 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/textbox.css @@ -0,0 +1,51 @@ + +.roundbluebox{ + position:absolute; + border-radius: 15px; + background: #eaf8fc; + background-image: -moz-linear-gradient(#fff, #d4e8ec); + background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #d4e8ec),color-stop(1, #fff)); + -moz-border-radius: 35px; + border-width: 1px; + border-style: solid; + border-color: #c4d9df #a4c3ca #83afb7; + padding: 10px; + overflow: hidden; +} +.roundblue{ + border-radius: 5px; + padding: 10px; + border: 1px solid #a4c3ca; + background: #f1f1f1; + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + overflow: hidden; +} +.roundbluetext{ + padding: 2px; + overflow: auto; +} + +.roundgraybox{ + position:absolute; + background: #eaeaea; + border-width: 1px; + border-style: solid; + border-color: #D8D8D8 #A4A4A4 #A4A4A4 #D8D8D8; + padding: 10px; + overflow: hidden; +} +.roundgray{ + padding: 10px; + border: 1px solid #fff; + background: #f1f1f1; + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + overflow: hidden; +} +.roundgraytext{ + padding: 2px; + overflow: auto; +} diff --git a/scorm-s-integrer-ds-equipe/css/ui.css b/scorm-s-integrer-ds-equipe/css/ui.css new file mode 100644 index 0000000..114ec0e --- /dev/null +++ b/scorm-s-integrer-ds-equipe/css/ui.css @@ -0,0 +1,1366 @@ + +/* TEXTAREA */ +.textareabloc{ + position:relative; + left:0px; + top:0px; + border: 0px solid red; + padding: 1px; + margin: 1px; + background-image:url("write.gif"); + background-position: right bottom; + background-repeat: no-repeat; +} + +#fullscreen{ + position:fixed; + right:0px; + bottom:0px; + width : 50px; + height : 50px; + cursor : pointer; + background-image:url("fullscreen.png"); +} +#fullscreen-no{ + display : none; +} + +/* MESSAGE BOX Right */ +#flatrightmessage{ + position : absolute; + right :-60%; + top : 5%; + width : 35%; + min-width : 400px; + background: white; + border : solid 1px gray; + overflow:hidden; + display:none; + z-index : 6; +} +.iconrightmessageinner{ + position:absolute; + top:0; + bottom:0px; + width : 60px; +} +.rightmessageOk{ + background:#A5DF00; + background-image:url("../fx/valid.png"); + background-position: center center; + background-repeat: no-repeat; +} +.rightmessageKo{ + background:#FA5858; + background-image:url("../fx/wrong.png"); + background-position: center center; + background-repeat: no-repeat; +} +.supprightmessage{ + position:absolute; + right:0px; + top:0; + bottom:0px; + width : 30px; + cursor:pointer; + background-image:url("../fx/cross.png"); + background-position: center center; + background-repeat: no-repeat; +} + +.flatrightmessageinner{ + position:relative; + text-align: center; + margin-left:65px; + margin-top:10px; + margin-bottom:10px; + margin-right: 30px; + font-size :17px; + line-height: 30px; +} + +/* MESSAGE BOX CENTER */ +#centermessage{ + position:absolute; + left :50%; + top:50%; + border-radius: 10px; + background: #F5D0A9; + background-image: -moz-linear-gradient(#fff, #FAAC58); + background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #FAAC58),color-stop(1, #fff)); + -moz-border-radius: 35px; + border-width: 1px; + border-style: solid; + border-color: #c4d9df #a4c3ca #83afb7; + width : 440px; + height: 60px; + margin-left : -220px; + margin-top : -30px; + z-index:1000; + overflow: hidden; + -webkit-transition: all 0.5s; + transition: all 0.5s; +} +#centermessageinner{ + position:absolute; + border-radius: 4px; + left :7px; + top :7px; + bottom :7px; + right :7px; + border: 1px solid #a4c3ca; + background: #f1f1f1; + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + overflow: hidden; +} +#centermessageinner:after{ + content:"."; + display:block; + clear:both; +} +#centermessageinner p{ + text-align :center; + margin: 5px; + padding: 5px; + font-size :18px; +} + + +/* PARAMETRES */ +#parametrebox{ + position:absolute; + left :50%; + top:50%; + border-radius: 10px; + background: #01A9DB; + background-image: -moz-linear-gradient(#fff, #01A9DB); + background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #01A9DB),color-stop(1, #fff)); + -moz-border-radius: 35px; + border-width: 1px; + border-style: solid; + border-color: #c4d9df #a4c3ca #83afb7; + width : 440px; + height: 440px; + margin-left : -220px; + margin-top : -220px; + z-index:1000; + overflow: hidden; + display : none; +} +#parametrebox h1{ + text-align : center; + font-size : 20px; +} +#parametreinner{ + position:absolute; + border-radius: 5px; + left :8px; + top :8px; + bottom :8px; + right :8px; + font-size : 24px; + border: 1px solid #a4c3ca; + background: white; + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset, 0 1px 0 rgba(255, 255, 255, 1); + overflow: hidden; +} +#parametreinner table{ + margin-top : 40px; + margin-left : 30px; +} + +#parametreOpac{ + position: absolute; + left : 0%; + top : 0%; + width : 100%; + height : 100%; + background: gray; + opacity : 0.5; + display : none; + z-index:999; +} + +#parametreOpacGesture{ + position: absolute; + left : 0%; + top : 0%; + width : 100%; + height : 100%; + background: white; + opacity : 0.6; + background-image:url("../fx/bouton_suivant.png"); + background-position: center center; + background-repeat: no-repeat; + cursor:pointer; + z-index:999; +} +/*Select QCM Line*/ +.selectqcmline{ + text-decoration: none; + cursor:pointer; +} + +.selectqcmline:hover,.selectqcmline:active{ + text-decoration: underline; +} + +/*LEXIQUE*/ +.lexique{ + color : #0B3861; + font-weight : bold; + cursor : pointer; +} +.lexique:hover{ + color : #DF3A01; + font-weight : bold; + cursor : pointer; +} + +.lexiqueTitle{ + font-weight : bold; + border-bottom : solid 1px black +} + +.lexiqueContent { + position : relative; + left : 5px; + top : 5px; + width : 190px; + height : 150px; +} + +.lexiqueContentLarg{ + position : relative; + left : 5px; + top : 5px; + width : 290px; + height : 290px; + overflow : auto; +} + +.lexiqueBox { + position : absolute; + background : #e0f5ff; + border : 1px solid #0c0e0f; + width : 200px; + height : 200px; + z-index : 11; + display : none; + border-radius: 3px; +} +.lexiqueBox:after, .lexiqueBox:before { + bottom: 100%; + left: 80px; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} +.lexiqueBox:after { + border-color: rgba(224, 245, 255, 0); + border-bottom-color: #e0f5ff; + border-width: 10px; + margin-left: -10px; +} +.lexiqueBox:before { + border-color: rgba(12, 14, 15, 0); + border-bottom-color: #0c0e0f; + border-width: 11px; + margin-left: -11px; +} + +.lexiqueBoxBottom { + position: absolute; + background: #e0f5ff; + border: 1px solid #0c0e0f; + width : 200px; + height : 200px; + z-index : 11; + display : none; + border-radius: 3px; +} +.lexiqueBoxBottom:after, .lexiqueBoxBottom:before { + top: 100%; + left: 80px; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} +.lexiqueBoxBottom:after { + border-color: rgba(224, 245, 255, 0); + border-top-color: #e0f5ff; + border-width: 10px; + margin-left: -10px; +} +.lexiqueBoxBottom:before { + border-color: rgba(12, 14, 15, 0); + border-top-color: #0c0e0f; + border-width: 11px; + margin-left: -11px; +} + +.addLexique{ + position : absolute; + right:0px; + bottom:0px; + width : 60px; + height :60px; + background-image:url("../fx/infos-plus.png"); + background-position: center center; + background-repeat: no-repeat; + cursor:pointer; +} +.delLexique{ + position : absolute; + right:-20px; + top:-20px; + width : 40px; + height :40px; + background-image:url("../fx/close-mini.png"); + background-position: center center; + background-repeat: no-repeat; + cursor:pointer; + z-index : 12; + display:none; +} +/* RAPPORT ECRIT FIN DE MODULE */ +.errorspan{ + color : red; + text-decoration : line-through; + font-weight : italic; +} +.goodspan{ + color : #74DF00; +} + +.errorMark{ + color : red; + font-weight : bold; +} +.errorMarkDiv{ + position : absolute; + color : red; + font-size:20px; + font-weight : bold; +} +.goodMarkDiv{ + position : absolute; + color : #74DF00; + font-size:22px; +} +.goodMarkRound{ + position : absolute; + border:solid 3px #74DF00; + border-radius: 50%; + -moz-border-radius: 50%; + -webkit-border-radius: 50%; +} +.errorMarkRound{ + position : absolute; + border:solid 3px red; + border-radius: 50%; + -moz-border-radius: 50%; + -webkit-border-radius: 50%; +} + +/* RAPPORT ECRIT FIN DE MODULE */ +.reportw{ + border: 1px solid #8a8a8a; + border-radius: 0.2em; + -moz-border-radius: 0.2em; + -webkit-border-radius: 0.2em; + background-color : white; +} + +.reportw h2{ + border-bottom: 1px solid #8a8a8a; + padding:1%; + margin:0; +} + +.reportw p{ + padding:1%; +} + +.printBilanRapportW{ + float:right; + width:55px; + height:55px; + margin:1%; + background-image:url("../fx/printbtn.png"); + background-position: center center; + background-repeat: no-repeat; + cursor:pointer; +} + +/* DIALOG DOWNLOAD BOX */ +#dialogDown{ + position:absolute; + left :50%; + top:50%; + width:350px; + margin-left:-175px; + text-align:center; + background-color : white; + background-repeat:no-repeat; + background-position:center; + overflow : hidden; + border-radius: 0.5em; + -moz-border-radius: 0.5em; + -webkit-border-radius: 0.5em; + border: 2px solid #8a8a8a; + font-size:22px; +} +#dialogDown p{ + margin:1%; + padding:3%; +} +.dialogDownTitle{ + margin:1%; + padding:3%; + color:purple; +} + +.buttonDialogDownNo , .buttonDialogDownYes{ + background-color:#ededed; + -moz-box-shadow:inset 0px 1px 0px 0px #ffffff; + -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; + box-shadow:inset 0px 1px 0px 0px #ffffff; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) ); + background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% ); + -webkit-border-radius:10px; + -moz-border-radius:10px; + border-radius:10px; + text-indent:0; + border:1px solid #dcdcdc; + display:inline-block; + font-style:normal; + padding:5px; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #ffffff; + margin:0.1em; + font-size:22px; + width:60px; +} + +.buttonDialogDownNo{ + color : gray; +} +.buttonDialogDownYes{ + color : green; +} + +/* DIALOG SAVE BOX */ +#dialogReprendre{ + position:absolute; + left :50%; + top : 5%; + width:350px; + margin-left:-175px; + text-align:center; + background-color : white; + background-repeat:no-repeat; + background-position:center; + overflow : hidden; + border-radius: 0.5em; + -moz-border-radius: 0.5em; + -webkit-border-radius: 0.5em; + border: 2px solid #B43104; + font-size:22px; + z-index : 10; +} +#dialogReprendre p{ + margin:1%; + padding:3%; +} + +.opacReprendre{ + position:absolute; + left : 0px; + top : 0px; + width : 100%; + height : 100%; + z-index : 10; + display : none; + background-color : gray; + opacity: 0.4; + filter: alpha(opacity=40); +} + +/* LIGHT BOX */ +#lightbox{ + position:absolute; + background-color : transparent; + background-repeat:no-repeat; + background-position:center; + z-index : 97; + display:none; +} + +.closelightbox{ + width:50px; + height:50px; + position:absolute; + right:-5px; + top:-5px; + background-image:url("../fx/close.png"); + background-repeat:no-repeat; + background-position:center; + position:absolute; + z-index : 99; + cursor:pointer; +} + +.innerlightbox{ + position:absolute; + background-color : white; + width:96%;height:96%; + left:2%;top:2%; + border:solid 1px gray; + background-repeat:no-repeat; + background-position:center; + position:absolute; + z-index : 98; + -moz-border-radius: 5px; + -khtml-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; +} + +/* BILAN SUIVI BOX */ +.toptitle{ + position:relative; + top:0px; + left:0px; + width:98%; + padding:1%; + padding-top:5px; + padding-bottom:5px; + overflow:hidden; + color:white; + font-size:18px; + background: #6E6E6E; + background-image:url("glow.png"); +} + +.containBilan{ + position:relative; + left:0px; + width:98%; + height:90%; + padding:1%; + overflow:auto; +} + +.blockbilan{ + position:relative; + float:left; + width:45%; + padding:1%; + margin:1%; + margin-right:0px; + margin-bottom:0px; + height:185px; + overflow:auto; + font-size:15px; + border:solid 1px gray; +} + +.goodRepBilan{ + font-size:17px; + color:green; + font-weight:bold; +} + +.questbilan{ + width:93%; + margin-left:1%; + padding-bottom:5px; + font-size:15px; + border-bottom:dotted 1px gray; +} + +.mainshare{ + position:relative; + margin-left:auto; + margin-right:auto; + top:1%; + width:100%; + max-width:600px; + height:98%; + background: beige; + border:solid 1px gray; + overflow:hidden; + box-shadow: 1px 1px 12px #A9BCF5; + z-index:1000000; + display:none; +} + +.mainbilan{ + position:relative; + margin-left:auto; + margin-right:auto; + top:1%; + width:100%; + max-width:700px; + height:98%; + background: beige; + border:solid 1px gray; + overflow:hidden; + box-shadow: 1px 1px 12px #A9BCF5; + z-index:1000000; + display:none; +} + +.printBilan{ + position:absolute; + right:2px; + bottom:2px; + z-index:13; + cursor :pointer; +} + +.suiviresult{ + position:absolute; + left:90%; + top:5%; + width:90%; + height:90%; + max-height:600px; + background: beige; + border:solid 1px gray; + overflow:hidden; + box-shadow: 1px 1px 12px #A9BCF5; + z-index:1000; + border-radius:1%; +} + +.suivibox{ + width:50px; + height:50px; + position:absolute; + right:10px; + bottom:10px; + position:absolute; + z-index :1002; + border:solid 2px gray; + cursor:pointer; + border-radius:50%; + text-align:center; + line-height:50px; + font-weight:bold; + font-size:30px; +} +.suivibox:hover{ + border:solid 2px black; +} + +.toptitlesuiviRed{ + position:relative; + top:0px; + left:0px; + width:98%; + padding:1%; + padding-top:5px; + padding-bottom:5px; + font-size:17px; + background: red; + color:white; + overflow:hidden; +} + +.toptitlesuiviGreen{ + position:relative; + top:0px; + left:0px; + width:98%; + padding:1%; + padding-top:5px; + padding-bottom:5px; + font-size:17px; + background: green; + color:white; + overflow:hidden; +} + + +.viewScreenMini{ + position:absolute; + display:block; + bottom:2px; + left:2px; + width:30px; + height:20px; + text-decoration:none; + background-image:url("../fx/viewer.png"); + background-repeat:no-repeat; +} +.viewScreenApercu{ + color:white; + background: #6E6E6E; + background-image:url("glow.png"); + background-repeat:no-repeat; + background-position:center center; + opacity: 0.5; + filter: alpha(opacity=50); +} + +/* LANG BOX */ +.langposi{ + position:absolute; + top:1px; + right:1px; + cursor:pointer; + margin:3px; + width:36px; + height:25px; +} + +.langposicenter{ + cursor:pointer; + margin:30px; + margin-left:2px; + margin-right:2px; + border:solid 1px white +} + +.langbox{ + position : absolute; + width : 400px; + height : 100px; + top : 50%; + left : 50%; + margin-left : -200px; + margin-top : -50px; + z-index:20; + font-size: 60px; + text-align:center; + background: black; + border-radius:15px; + display:none; +} + +/* LEGEND BOX */ +.legendbox{ + position:absolute; + left:2%; + top:88%; + width:96%; + height:2%; +} + +/* DiALOGUE BOX */ +.RightRepDialog ,.BottomRepDialog { + background-color:#ededed; + -moz-box-shadow:inset 0px 1px 0px 0px #ffffff; + -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; + box-shadow:inset 0px 1px 0px 0px #ffffff; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) ); + background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% ); + -webkit-border-radius:10px; + -moz-border-radius:10px; + border-radius:10px; + text-indent:0; + border:1px solid #dcdcdc; + display:inline-block; + font-style:normal; + padding:5px; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #ffffff; + margin:0.1em; +} + +.RightRepDialog:hover ,.BottomRepDialog:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) ); + background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% ); + background-color:#dfdfdf; +} + +.RightRepDialog:active ,.BottomRepDialog:active { + position:relative; + top:1px; +} + +.zonereponsesdialog{ + text-align:center; + padding:1%; +} + +#zonedialogtexte{ + +} + +/*Game Hero Select*/ +.gameheroselect{ + border: 2px solid gray; + cursor: pointer; +} +.gameheroselect:hover{ + border: 2px solid brown; +} +.gameheroselect:active{ + border: 2px solid red; +} + +/* BAR GRAPH */ + .bargraph { + height: 229px; + position: relative; + background: url('papergrid.jpg') repeat-x; + border-left: 1px solid #d4d4d4; + margin: 15px auto 50px; + } + + .bargraph ul.bars { + margin: 0; + padding: 0; + /* getting rid of bullets */ + list-style-type: none; + } + + div.bargraph div.colorfilter { + position: absolute; + top: 0; left: 0; + height: 201px; + background-color: black; + opacity:0.2; filter:alpha(opacity=20); + z-index: 97; + + } + + div.bargraph div.colorfilter2 { + position: absolute; + top: 0; left: 0; + height: 201px; + background-color: black; + opacity:0.4; filter:alpha(opacity=40); + z-index: 97; + + } + + .bargraph ul.bars li { + position: absolute; + width: 30px; + height: 200px; + /*move it up from bottom label*/ + bottom: 29px; + padding: 0; + margin: 0; + background:gray; + background: url('bars200.jpg') no-repeat; + text-align: center; + font-weight: bold; + color: white; + line-height: 2.5em; + font-size: 13px; + z-index: 99; + } + + .bargraph ul.bars li span { + position: relative; + top: -25px; + color: #7c7c7c; + } + + .bargraph ul.bars li img { + margin: 0; padding: 0; + position: relative; + top: -71px; + left: 0; + } + + .bargraph ul.bars li span.darkpen { + color: #515151; + position: static; + } + + .bargraph ul.bars li span.whitepen { + color: red; + } + + .bargraph ul.bars li.bar1 {left: 21px;} + .bargraph ul.bars li.bar2 {left: 94px;} + .bargraph ul.bars li.bar3 {left: 167px;} + .bargraph ul.bars li.bar4 {left: 240px;} + .bargraph ul.bars li.bar5 {left: 313px;} + .bargraph ul.bars li.bar6 {left: 386px;} + .bargraph ul.bars li.bar7 {left: 459px;} + .bargraph ul.bars li.bar8 {left: 532px;} + .bargraph ul.bars li.bar9 {left: 605px;} + .bargraph ul.bars li.bar10 {left: 678px;} + .bargraph ul.bars li.bar11 {left: 751px;} + .bargraph ul.bars li.bar12 {left: 824px;} + .bargraph ul.bars li.bar13 {left: 897px;} + .bargraph ul.bars li.bar14 {left: 970px;} + .bargraph ul.bars li.bar15 {left: 1043px;} + .bargraph ul.bars li.bar16 {left: 1116px;} + .bargraph ul.bars li.bar17 {left: 1189px;} + .bargraph ul.bars li.bar18 {left: 1262px;} + .bargraph ul.bars li.bar19 {left: 1335px;} + .bargraph ul.bars li.bar20 {left: 1408px;} + + /* bottom means 100% in background-position */ + .bargraph ul.bars li.colorbar1 { background-position: 0px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar2 { background-position: -30px bottom;background-color: #0B4C5F;} + .bargraph ul.bars li.colorbar3 { background-position: -60px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar4 { background-position: -90px bottom;background-color: #0B4C5F;} + .bargraph ul.bars li.colorbar5 { background-position: -120px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar6 { background-position: -150px bottom;background-color: #0B4C5F;} + .bargraph ul.bars li.colorbar7 { background-position: -180px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar8 { background-position: -120px bottom;background-color: #0B4C5F;} + .bargraph ul.bars li.colorbar9 { background-position: -150px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar10 { background-position: -180px bottom;background-color: #0B4C5F;} + .bargraph ul.bars li.colorbar11 { background-position: 0px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar12 { background-position: -30px bottom;background-color: #0B4C5F;} + .bargraph ul.bars li.colorbar13 { background-position: -60px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar14 { background-position: -90px bottom;background-color: #0B4C5F;} + .bargraph ul.bars li.colorbar15 { background-position: -120px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar16 { background-position: -150px bottom;background-color: #0B4C5F;} + .bargraph ul.bars li.colorbar17 { background-position: -180px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar18 { background-position: -120px bottom;background-color: #0B4C5F;} + .bargraph ul.bars li.colorbar19 { background-position: -150px bottom;background-color: gray;} + .bargraph ul.bars li.colorbar20 { background-position: -180px bottom;background-color: #0B4C5F;} + + .label { list-style-type: none; + position: absolute; bottom: 3px; + margin: 0; padding: 0; + background-color: black; + } + .label li { + color: white; + background-color: black; + font-size: 10px; + width: 73px; + float: left; + text-align: center; + overflow: hidden; + line-height: 9px; + } + + + ul.y-axis { + list-style-type: none; position: absolute; + left: -45px; + width: 40px; + text-align: right; + bottom: 0; + margin: 0; padding: 0; + } + + ul.y-axis li:first-child { + height: 40px; + line-height: 40px; + } + + ul.y-axis li { + color: #aba8a8; + font-size: 12px; + height: 51px; + line-height: 51px; + text-align: right; + } + + ul.y-axis li.units { + position: absolute; + bottom: 110px; + right: 20px; + line-height: 1.2em; + height: auto; + } + + .bargraph p { + position: absolute; + left: 0; + top: 236px; + padding: 0; + margin:0; + text-align: left; + width: 100%; + font-size: 10px; color: black; + line-height: 1.3em; + + } + .bargraph p.centered { text-align: center; } + +/* EXAM BAR */ + +.examscreen_box , .examscreen_box_bottom { + position: absolute; + background: white; + border: 2px solid gray; + cursor:pointer; + z-index : 1000; + text-align:center; + padding-top:4px; + width: 300px; + height : 233px; +} + +.examscreen_box:after, .examscreen_box:before { + bottom: 100%; + left: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} + +.examscreen_box:after { + border-color: rgba(136, 183, 213, 0); + border-bottom-color: white; + border-width: 10px; + margin-left: -145px; +} + +.examscreen_box:before { + border-color: rgba(194, 225, 245, 0); + border-bottom-color: gray; + border-width: 13px; + margin-left: -148px; +} + +.examscreen_box_bottom:after, .examscreen_box_bottom:before { + top: 100%; + left: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} + +.examscreen_box_bottom:after { + border-color: rgba(136, 183, 213, 0); + border-top-color: white; + border-width: 10px; + margin-left: -145px; +} + +.examscreen_box_bottom:before { + border-color: rgba(194, 225, 245, 0); + border-top-color: gray; + border-width: 13px; + margin-left: -148px; +} + +.showScreenimg{ + width: 96%; + margin:2%; +} + +/*nomenclature*/ +.nomenclature{ + position : absolute; + background-color: transparent; +} + +.lignenomenclaturereset{ + border-radius : 5px; + background-color: #CED8F6; + cursor:pointer; +} +.lignenomenclaturereset:hover{ + border-radius : 5px; + background-color: #F5A9D0; + cursor:pointer; +} +.lignenomenclature{ + border-radius : 5px; + background-color: #F2F2F2; + cursor:pointer; +} +.lignenomenclature:hover{ + background-color: #F5A9D0; + cursor:pointer; +} + +/* Domaine Select */ +.domaineselect div, .domaineselect fieldset , .domaineselect section{ + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + +.domaineselect { + font: 13px/20px 'Lucida Grande', Verdana, sans-serif; + color: #404040; + margin: 50px auto; + margin: 0px; + width: 200px; + background: white; + border: 1px solid #cdd3d7; + border-radius: 4px; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.domaineselect-header { + position: relative; + line-height: 24px; + padding: 7px 15px; + color: #5d6b6c; + text-shadow: 0 1px rgba(255, 255, 255, 0.7); + background: #f0f1f2; + border-bottom: 1px solid #d1d1d1; + border-radius: 3px 3px 0 0; + background-image: -webkit-linear-gradient(top, #f5f7fd, #e6eaec); + background-image: -moz-linear-gradient(top, #f5f7fd, #e6eaec); + background-image: -o-linear-gradient(top, #f5f7fd, #e6eaec); + background-image: linear-gradient(to bottom, #f5f7fd, #e6eaec); + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 1px rgba(0, 0, 0, 0.03); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 1px rgba(0, 0, 0, 0.03); +} + +.domaineselect-title { + line-height: inherit; + font-size: 14px; + font-weight: bold; + margin: 0; + padding: 0; + border: 0; + vertical-align: baseline; +} + +.domaineselect-lists { + position: absolute; + top: 50%; + right: 10px; + margin-top: -11px; + padding: 10px 4px; + width: 19px; + height: 3px; + font: 0/0 serif; + text-shadow: none; + color: transparent; +} +.domaineselect-lists:before { + content: ''; + display: block; + height: 3px; + background: #8c959d; + border-radius: 1px; + -webkit-box-shadow: 0 6px #8c959d, 0 -6px #8c959d; + box-shadow: 0 6px #8c959d, 0 -6px #8c959d; +} + +.domaineselect-list-item { + display: block; + line-height: 24px; + padding: 12px 15px; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.domaineselect-list-item + .domaineselect-list-item { + border-top: 1px solid #f0f2f3; +} + +.domaineselect-list-cb { + display: none; +} + +.domaineselect-list-mark { + position: relative; + display: inline-block; + vertical-align: top; + margin-right: 12px; + width: 20px; + height: 20px; + border: 2px solid #c4cbd2; + border-radius: 12px; +} +.domaineselect-list-mark:before { + content: ''; + display: none; + position: absolute; + top: 50%; + left: 50%; + margin: -5px 0 0 -6px; + height: 4px; + width: 8px; + border: solid #39ca74; + border-width: 0 0 4px 4px; + -webkit-transform: rotate(-45deg); + -moz-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + -o-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.domaineselect-list-cb:checked ~ .domaineselect-list-mark { + border-color: #39ca74; +} +.domaineselect-list-cb:checked ~ .domaineselect-list-mark:before { + display: block; +} + +.domaineselect-list-desc { + font-weight: bold; + color: #8a9a9b; +} +.domaineselect-list-cb:checked ~ .domaineselect-list-desc { + color: #34bf6e; +} + +li.playing { + background:#A9BCF5; +} + +li.playing span{ + background: url('../data/note.png') center center; + width: 18px; + height: 18px; + padding: 0px; + margin: 0px; + position: absolute; + left: -22px; + top: 9px; +} + +/* Chargement 3D */ +.coverall{ + position:absolute; + padding:0px; + margin:0px; + border:solid 0px blue; + left:0px; + right:0px; + top:0px; + bottom:0px; + padding:0; + margin:0; + background-color: #BDBDBD; + background-image: url('ajax_loader_blue.gif'); + background-position: center center; + background-repeat:no-repeat; + z-index:50; +} + +/*LUDI Sortable*/ +.ludiSortableListSortable{ + position : absolute; + border : dotted 1px #f0edf0; + width : 450px; + height : 400px; + padding : 1%; + background-image : url("../fx/arrowsortable.png"); + background-position : center top; + background-repeat : no-repeat; +} + +.ludiSortableListSortableUl{ + width : 45%; + float : left; + padding : 0; + margin : 0; + margin-top : 1%; +} + +.ludiSortableListSortableUl2{ + border : dotted 1px #f0edf0; + width : 45%; + float : left; + padding : 2%; + margin : 0; + margin-top : 1%; + height : 90%; +} + +.ludiSortableUl{ + padding : 0; + margin : 0; + min-height : 170px; +} + +.ludiSortableUl li{ + list-style-type: none; + border : solid 1px black; + padding : 3%; + margin : 1%; + background-color : white; + cursor : move; + -webkit-touch-callout:none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.ludiSortableUl li{ + -moz-box-shadow:inset 0px 1px 0px 0px #ffffff; + -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff; + box-shadow:inset 0px 1px 0px 0px #ffffff; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, white), color-stop(1, #f0edf0) ); + background:-moz-linear-gradient( center top, white 5%, #f0edf0 100% ); + background-color:#ededed; + border-radius: 5px; + text-indent:0; + border:1px solid #dcdcdc; + /*display:inline-block;*/ + color : black; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #ffffff; +} + +.barBody{ + border-radius:6px; + background-image : url("../fx/transparent.png"); +} + +.barSty{ + padding-bottom: 2px; + cursor:pointer; + background-image : url("../fx/transparent.png"); + border-collapse: collapse; +} + +.barStyQcmLeft{ + border-top:solid 1px; + border-collapse: collapse; +} +.barStyQcmRight{ + border-top:solid 1px; + border-collapse: collapse; +} + + +/* +.examscreenbox { + position: relative; + padding:5px; + margin:5px; + margin-left:1px; + margin-right:1px; + padding-left:2px; + padding-right:2px; + font-size : 27px; + text-decoration : none; + color : black; + cursor:pointer; + z-index : 6; +} + +.examscreenbox:hover { + color : red; +} +*/ \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/css/write.gif b/scorm-s-integrer-ds-equipe/css/write.gif new file mode 100644 index 0000000..639399b Binary files /dev/null and b/scorm-s-integrer-ds-equipe/css/write.gif differ diff --git a/scorm-s-integrer-ds-equipe/data/domadd.html b/scorm-s-integrer-ds-equipe/data/domadd.html new file mode 100644 index 0000000..5f28270 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/domadd.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page0.jpg b/scorm-s-integrer-ds-equipe/data/page0.jpg new file mode 100644 index 0000000..227b8ba Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page0.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page0.xml b/scorm-s-integrer-ds-equipe/data/page0.xml new file mode 100644 index 0000000..b9c0bf1 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page0.xml @@ -0,0 +1,42 @@ + + + + + + +<n>0</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +img +images/posi00.png +740130195548294218195

548

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text201410676501410456

50

00001000Compétences comportementales

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page1.xml +White +#7100E1 +3 +
text22642666708614559453

135

0000border-radius : 16px;1000Comment s’intégrer dans l’équipe
et faire preuve de coopération ?

]]>
#000000Center +border: solid 2px #808080;background-color:White;3
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page1.jpg b/scorm-s-integrer-ds-equipe/data/page1.jpg new file mode 100644 index 0000000..11806e1 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page1.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page1.xml b/scorm-s-integrer-ds-equipe/data/page1.xml new file mode 100644 index 0000000..143797f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page1.xml @@ -0,0 +1,47 @@ + + +images/2019x2019x2x16x17x41x31xpresenter2.svg + + + + +<n>1</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text163561745563222286444

310

0000bbullewhite1000Que vous soyez jeune diplômé ou professionnel aguerri, arriver dans une nouvelle équipe n’est pas forcément évident. L’intérêt pour le job ne suffit pas pour se sentir bien au sein d’une équipe, les relations avec ses collègues comptent beaucoup dans la motivation au travail.

Pas d’inquiétude, si vous êtes là, c’est que vous êtes légitime. Ils vous ont choisi, ils vous aideront aussi à trouver votre place. Bien s’intégrer c’est aussi pouvoir faire preuve de coopération avec les autres. Voici quelques conseils qui vous permettrons de mieux vous intégrer au sein de votre équipe.

]]>
bulle36b3b-1b4b37b2b36b37b-16047045.png;316;376;40bulle4b3b-1b4b36b2b34b3b-16047045.png;75;397;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi01.png +45174310560-34430310

560

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-prev2263556562270656

56

000010000data/page0.xml +White +#7100E1 +3 +
material-buttonsystem-next882635565640470456

56

000010000data/page2.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page10.jpg b/scorm-s-integrer-ds-equipe/data/page10.jpg new file mode 100644 index 0000000..7bb4c30 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page10.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page10.xml b/scorm-s-integrer-ds-equipe/data/page10.xml new file mode 100644 index 0000000..1a9d53d --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page10.xml @@ -0,0 +1,37 @@ + + + + + + +<n>10</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text2221633055645-2376480

70

0000bdbullewhite10003. Ne pas vouloir révolutionner

]]>
#000000Center +border-top: solid 4px #800080;border-bottom: solid 4px #800080;background-color:White;1
material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page11.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page9.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page11.jpg b/scorm-s-integrer-ds-equipe/data/page11.jpg new file mode 100644 index 0000000..32ec690 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page11.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page11.xml b/scorm-s-integrer-ds-equipe/data/page11.xml new file mode 100644 index 0000000..5cc2eb7 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page11.xml @@ -0,0 +1,46 @@ + + + + + + +<n>11</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text1622886112411078460

240

0000bbullewhite1000En arrivant dans votre nouvel environnement de travail, vous remarquerez rapidement que les choses ne se font pas forcément faites comme vous aviez l’habitude de faire dans votre ancienne entreprise.

Si vous pensez avoir l’idée du siècle, gardez-la bien au chaud dans un premier temps.

Ne risquez pas de vous rendre antipathique dès le premier jour en passant pour un donneur de leçon. Demandez plutôt pourquoi telle ou telle chose est réalisé de telle manière.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;292;318;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page12.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page10.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page12.jpg b/scorm-s-integrer-ds-equipe/data/page12.jpg new file mode 100644 index 0000000..296fdbb Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page12.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page12.xml b/scorm-s-integrer-ds-equipe/data/page12.xml new file mode 100644 index 0000000..f6bd981 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page12.xml @@ -0,0 +1,46 @@ + + + + + + +<n>12</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text1622886112411078460

188

0000bbullewhite1000C’est dans un second temps que l’on peut suggérer des idées à son manager.
En effet il appréciera le fait qu’un nouveau collaborateur sache prendre des initiatives.

Attention à ne pas confondre apporter et imposer son expérience.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;299;266;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page13.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page11.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page13.jpg b/scorm-s-integrer-ds-equipe/data/page13.jpg new file mode 100644 index 0000000..93ef419 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page13.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page13.xml b/scorm-s-integrer-ds-equipe/data/page13.xml new file mode 100644 index 0000000..09b8815 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page13.xml @@ -0,0 +1,68 @@ + + + + + + +<n>13</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +material-panel38113752044022220442

440

000010000#000000 +White +1 +
text161090318116980462

92

0000bbullewhite1000Lors de mon premier jour je découvre que l’organisation du travail ne correspond pas du tout à mes habitudes que faire ?

]]>
bulle4b3b-1b36b36b2b34b3b-16047045.png;176;206;40bulle4b3b-1b4b36b2b34b3b-16047045.png;9;172;40#000000Center +border: solid 2px #0B243B;background-color:White;1
qcm +barre +17 +1 +0 + +QCM6t8h541625446630634306422

306

0000check10000 +51 + + +0 +0 + +#000000 + +#BCF5A9 +1 +
+text164161664506434240420

48

00001000Coche la bonne réponse

]]>
#000000Center +border: solid 0px #808080;1
img +images/posi03.png +127286141484-122258141

484

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page14.xml +isokWhite +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page12.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page14.jpg b/scorm-s-integrer-ds-equipe/data/page14.jpg new file mode 100644 index 0000000..6ed5a90 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page14.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page14.xml b/scorm-s-integrer-ds-equipe/data/page14.xml new file mode 100644 index 0000000..7ed5f40 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page14.xml @@ -0,0 +1,37 @@ + + + + + + +<n>14</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text2221633055645-2376480

70

0000bdbullewhite10004. Découvrir ses collègues

]]>
#000000Center +border-top: solid 4px #800080;border-bottom: solid 4px #800080;background-color:White;1
material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page15.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page13.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page15.jpg b/scorm-s-integrer-ds-equipe/data/page15.jpg new file mode 100644 index 0000000..0599ec1 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page15.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page15.xml b/scorm-s-integrer-ds-equipe/data/page15.xml new file mode 100644 index 0000000..2a6cc85 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page15.xml @@ -0,0 +1,46 @@ + + + + + + +<n>15</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text1622886112411078460

280

0000bbullewhite1000Il s’agit d’une des phases clés de l’intégration, tisser des affinités avec ses nouveaux collègues vous permettra entre autres d’avoir envie de vous lever tous les matins pour aller au travail.

Pas question de tutoyer vos collègues dès votre arrivée, vous êtes encore un étranger pour eux, attendez donc qu’on vous y invite. Une bonne façon de découvrir vos collègues est d’abord de retenir leur Prénom et de les saluer avec.

En effet, les membres de votre équipe apprécieront qu’on les appelle par leur Prénom.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;348;358;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page16.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page14.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page16.jpg b/scorm-s-integrer-ds-equipe/data/page16.jpg new file mode 100644 index 0000000..7c5a594 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page16.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page16.xml b/scorm-s-integrer-ds-equipe/data/page16.xml new file mode 100644 index 0000000..38b9c70 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page16.xml @@ -0,0 +1,46 @@ + + + + + + +<n>16</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text1622886112411078460

280

0000bbullewhite1000Ensuite l’étape consiste à savoir qui est qui et quelle est sa fonction au sein de l’entreprise.
Les pauses café et les déjeuners sont le meilleur moyen pour favoriser les échanges et se découvrir des affinités.
Attention à ne pas tomber dans de la curiosité déplacée, même s’ils vous semblent sympathiques, ils ne sont pas encore vos amis.
Et s’ils le deviennent un jour, essayez de garder un comportement professionnel au travail.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;348;358;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page17.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page15.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page17.jpg b/scorm-s-integrer-ds-equipe/data/page17.jpg new file mode 100644 index 0000000..5fcc5f0 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page17.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page17.xml b/scorm-s-integrer-ds-equipe/data/page17.xml new file mode 100644 index 0000000..59537ac --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page17.xml @@ -0,0 +1,68 @@ + + + + + + +<n>17</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +material-panel38113752044022220442

440

000010000#000000 +White +1 +
text16590318116980462

92

0000bbullewhite1000Quelles sont les astuces pour découvrir vos collègues ?

]]>
bulle4b3b-1b36b36b2b34b3b-16047045.png;164;206;40bulle4b3b-1b4b36b2b34b3b-16047045.png;9;172;40#000000Center +border: solid 2px #0B243B;background-color:White;1
qcm +barre +17 +1 +0 + +QCM6t8h541625446630634306422

306

0000check10000 +51 + + +0 +0 + +#000000 + +#BCF5A9 +1 +
+text164161664506434240420

48

00001000Coche les 3 bonnes réponse

]]>
#000000Center +border: solid 0px #808080;1
img +images/posi03.png +127286141484-122258141

484

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page18.xml +isokWhite +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page16.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page18.jpg b/scorm-s-integrer-ds-equipe/data/page18.jpg new file mode 100644 index 0000000..4bb34a6 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page18.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page18.xml b/scorm-s-integrer-ds-equipe/data/page18.xml new file mode 100644 index 0000000..e7d7c0d --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page18.xml @@ -0,0 +1,37 @@ + + + + + + +<n>18</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text2218033061645-2376480

70

0000bdbullewhite10005. Leur donner la possibilité de nous connaître

]]>
#000000Center +border-top: solid 4px #800080;border-bottom: solid 4px #800080;background-color:White;1
material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page19.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page17.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page19.jpg b/scorm-s-integrer-ds-equipe/data/page19.jpg new file mode 100644 index 0000000..1586481 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page19.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page19.xml b/scorm-s-integrer-ds-equipe/data/page19.xml new file mode 100644 index 0000000..61b5f8a --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page19.xml @@ -0,0 +1,46 @@ + + + + + + +<n>19</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text1622886112411078460

280

0000bbullewhite1000A ce stade vous connaissez vos collègues, mais eux, vous connaissent–ils ?
Parlez donc de vous en vous mêlant à la conversation durant vos pauses déjeuner par exemple.
Votre collègue a passé son week-end à jardiner et c’est votre passe-temps favori ? Entrez dans la conversation.
Un autre est allé voir le dernier match au stade et vous êtes passionné de football ? Engager la conversation avec lui.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;348;358;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page20.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page18.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page2.jpg b/scorm-s-integrer-ds-equipe/data/page2.jpg new file mode 100644 index 0000000..59c2d6c Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page2.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page2.xml b/scorm-s-integrer-ds-equipe/data/page2.xml new file mode 100644 index 0000000..b105afa --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page2.xml @@ -0,0 +1,37 @@ + + + + + + +<n>2</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text2221633055645-2360480

63

0000bdbullewhite10001. Donner la meilleure impression

]]>
bulle36b3b-1b4b37b2b36b37b-16047045.png;138;376;40#000000Center +border-top: solid 4px #800080;border-bottom: solid 4px #800080;background-color:White;1
material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page3.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page1.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page20.jpg b/scorm-s-integrer-ds-equipe/data/page20.jpg new file mode 100644 index 0000000..ca6b124 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page20.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page20.xml b/scorm-s-integrer-ds-equipe/data/page20.xml new file mode 100644 index 0000000..8a3070f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page20.xml @@ -0,0 +1,46 @@ + + + + + + +<n>20</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text161178622251778466

314

0000bbullewhite1000Cependant, restez vous-même et ne vous inventez pas un personnage. Même s’il est important de se conformer aux codes de l’entreprise, il ne faut pas pour autant changer sa personnalité.
Vous seriez enfermé dans un personnage qui n’est pas le vôtre et vous finirez par vous sentir mal à l’aise dans vos interactions avec les autres. En plus de ça, le jour où vous voudriez « retourner dans votre vraie personnalité », cela pourrait blesser voire agacer vos collègues.

Restez donc comme vous êtes : introverti ou extroverti, timide ou bavard, commère ou discret tout en étant sociable et en phase avec les valeurs de l’entreprise.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;303;393;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page21.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page19.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page21.jpg b/scorm-s-integrer-ds-equipe/data/page21.jpg new file mode 100644 index 0000000..46f1e6c Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page21.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page21.xml b/scorm-s-integrer-ds-equipe/data/page21.xml new file mode 100644 index 0000000..7c849fe --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page21.xml @@ -0,0 +1,37 @@ + + + + + + +<n>21</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text2212133071345-2376480

70

0000bdbullewhite10006. Trouver sa place et sortir de la période d’intégration

]]>
#000000Center +border-top: solid 4px #800080;border-bottom: solid 4px #800080;background-color:White;1
material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page22.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page20.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page22.jpg b/scorm-s-integrer-ds-equipe/data/page22.jpg new file mode 100644 index 0000000..540bdf5 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page22.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page22.xml b/scorm-s-integrer-ds-equipe/data/page22.xml new file mode 100644 index 0000000..adf106b --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page22.xml @@ -0,0 +1,46 @@ + + + + + + +<n>22</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text161178622251778466

314

0000bbullewhite1000Si vous êtes embauché ici, ce n’est pas pour rien.

Votre manager espère voir vos compétences et savoir-faire se développer pour enfin devenir opérationnel.
Il va donc falloir quitter sa posture d’observation et tenir sa place au sein du groupe.

Vous devez montrer que vous êtes à la hauteur de ce qu’on vous a confié. Pas de panique, vos supérieurs sont là pour aider, n’hésitez pas à les solliciter.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;303;393;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page23.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page21.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page23.jpg b/scorm-s-integrer-ds-equipe/data/page23.jpg new file mode 100644 index 0000000..744ae83 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page23.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page23.xml b/scorm-s-integrer-ds-equipe/data/page23.xml new file mode 100644 index 0000000..55dc3c0 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page23.xml @@ -0,0 +1,37 @@ + + + + + + +<n>23</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text2212133071345-2376480

70

0000bdbullewhite10007. Faire preuve de coopération

]]>
#000000Center +border-top: solid 4px #800080;border-bottom: solid 4px #800080;background-color:White;1
material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565633263556

56

000010000data/page24.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page22.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page24.jpg b/scorm-s-integrer-ds-equipe/data/page24.jpg new file mode 100644 index 0000000..cd91d5a Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page24.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page24.xml b/scorm-s-integrer-ds-equipe/data/page24.xml new file mode 100644 index 0000000..5a144a1 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page24.xml @@ -0,0 +1,46 @@ + + + + + + +<n>24</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text161178622251778466

314

0000bbullewhite1000Maintenant que vous êtes bien intégré au sein de votre équipe, il va falloir faire preuve de coopération afin de faire évoluer l’entreprise.

Le but de la coopération est de fédérer des compétences réparties en conjuguant talents et intelligence de toute une équipe.

Cette performance collaborative permet de s’accorder vers un objectif commun

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;302;392;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page25.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page23.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page25.jpg b/scorm-s-integrer-ds-equipe/data/page25.jpg new file mode 100644 index 0000000..8a51146 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page25.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page25.xml b/scorm-s-integrer-ds-equipe/data/page25.xml new file mode 100644 index 0000000..a0e5297 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page25.xml @@ -0,0 +1,45 @@ + + + + + +<n>25</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text161178622251778466

314

0000bbullewhite1000Apprendre à coopérer permet d’améliorer 3 axes majeurs. Tout d’abord, cela permet d’améliorer la performance collective et l’innovation.
L’intelligence collective et la créativité de chacun n’est pas à négliger.
Le partage d’objectifs communs et d’une vision commune participent à améliorer les résultats.
Ensuite, cela permet la mise en place d’une organisation plus agile. Les circuits de prises de décision sont plus fluides et permettent une résolution plus efficace en cas de problèmes.
Enfin, les ressources de l’entreprise sont mieux optimisées dans le cas où la coopération augmente la productivité de l’entreprise.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;302;392;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page26.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page24.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page26.jpg b/scorm-s-integrer-ds-equipe/data/page26.jpg new file mode 100644 index 0000000..50a3b71 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page26.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page26.xml b/scorm-s-integrer-ds-equipe/data/page26.xml new file mode 100644 index 0000000..d3b8bd0 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page26.xml @@ -0,0 +1,57 @@ + + + + +<n>26</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 + +bilanresult +14 +456350100100190364100

100

000000000 + + +1 +0 +0 + + +0 + +0 + +0 +0 +0 +1 +
+finalprogressbar +3002803954656232395

46

000010000 +DimGray +border: solid 0px Gray; +1 +
+text183002503953156202395

31

00001000Score :

]]>
BlackLeftCenter +border: solid 0px Gray;1
button +16 +75065015634162650156

34

0000cursor:pointer;neoCssGray10000 + +1 +Black +3 +
+
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page27.jpg b/scorm-s-integrer-ds-equipe/data/page27.jpg new file mode 100644 index 0000000..50a3b71 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page27.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page27.xml b/scorm-s-integrer-ds-equipe/data/page27.xml new file mode 100644 index 0000000..9147278 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page27.xml @@ -0,0 +1,24 @@ + + + + + +<n>27</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text +18-50-501010-50-5010

10

LeftCenterredbackground-color:white;border:solid 1px black;400
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page28.xml b/scorm-s-integrer-ds-equipe/data/page28.xml new file mode 100644 index 0000000..3321b1c --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page28.xml @@ -0,0 +1,22 @@ + + + +<n>28</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text185050862622-19150862

622

0000border-radius: 20px;1000...

]]>
SlateGrayCenter +border: solid 1px SlateGray;1
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page3.jpg b/scorm-s-integrer-ds-equipe/data/page3.jpg new file mode 100644 index 0000000..01010f9 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page3.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page3.xml b/scorm-s-integrer-ds-equipe/data/page3.xml new file mode 100644 index 0000000..6d659d6 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page3.xml @@ -0,0 +1,46 @@ + + + + + + +<n>3</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text1640975562412286444

232

0000bbullewhite1000On dit souvent que la première impression est la plus importante, et bien c’est vrai. Votre équipe va vous observer et émettre un premier avis sur vous et il est bien difficile de donner une seconde impression. Pour cela, il suffit d’être souriant, tout en se montrant discret et agréable.
N’oubliez pas de vous présenter, entraînez-vous à dire qui vous êtes, d’où vous venez et pourquoi vous avez été embauché.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;580;323;50bulle4b3b-1b36b36b2b34b3b-16047045.png;243;318;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page4.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page2.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page4.jpg b/scorm-s-integrer-ds-equipe/data/page4.jpg new file mode 100644 index 0000000..0844fb4 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page4.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page4.xml b/scorm-s-integrer-ds-equipe/data/page4.xml new file mode 100644 index 0000000..60170a9 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page4.xml @@ -0,0 +1,46 @@ + + + + + + +<n>4</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text163490586258977462

298

0000bbullewhite1000La tenue vestimentaire est toujours une question qu’on se pose avant d’arriver dans un nouvel environnement. Une tenue de travail est-elle exigée ?
Si c’était le cas, vous en seriez informé dès l’entretien. Dans le cas contraire, misez sur une tenue sobre durant l’intégration. Ensuite, seulement si le dress code de l’entreprise le permet, vous pourriez sortir votre chemise à pois préférée.
Renvoyer une bonne image, c’est aussi savoir comment se comporter dans toutes les situations. Méfiez-vous des ragots et de ceux qui les colportent, tenez-vous à l’écart de ça pour ne pas être associé aux personnes qui les donne.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;604;332;50bulle4b3b-1b36b36b2b34b3b-16047045.png;271;376;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590303402146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page5.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page3.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page5.jpg b/scorm-s-integrer-ds-equipe/data/page5.jpg new file mode 100644 index 0000000..9394097 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page5.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page5.xml b/scorm-s-integrer-ds-equipe/data/page5.xml new file mode 100644 index 0000000..32c957b --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page5.xml @@ -0,0 +1,68 @@ + + + + + + +<n>5</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +material-panel38113752044022220442

440

000010000#000000 +White +1 +
text161290318116980462

92

0000bbullewhite1000A t’on avis quels sont les 2 élements principaux qui feront la meilleure première impression?

]]>
bulle4b3b-1b36b36b2b34b3b-16047045.png;171;206;40bulle4b3b-1b4b36b2b34b3b-16047045.png;9;172;40#000000Center +border: solid 2px #0B243B;background-color:White;1
qcm +barre +17 +1 +0 + +QCM6t8h541625445030634306422

306

0000check10000 +51 + + +0 +0 + +#000000 + +#BCF5A9 +1 +
+text164161664506434240420

48

00001000Coche les 2 réponses

]]>
#000000Center +border: solid 0px #808080;1
img +images/posi03.png +127286141484-122258141

484

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page6.xml +isokWhite +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page4.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page6.jpg b/scorm-s-integrer-ds-equipe/data/page6.jpg new file mode 100644 index 0000000..93e3e02 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page6.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page6.xml b/scorm-s-integrer-ds-equipe/data/page6.xml new file mode 100644 index 0000000..3b8f58f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page6.xml @@ -0,0 +1,37 @@ + + + + + + +<n>6</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text2221633055645-2376480

70

0000bdbullewhite10002. Observer, écouter et poser des questions

]]>
#000000Center +border-top: solid 4px #800080;border-bottom: solid 4px #800080;background-color:White;1
material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page7.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page5.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page7.jpg b/scorm-s-integrer-ds-equipe/data/page7.jpg new file mode 100644 index 0000000..f77b5c3 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page7.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page7.xml b/scorm-s-integrer-ds-equipe/data/page7.xml new file mode 100644 index 0000000..55f9675 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page7.xml @@ -0,0 +1,46 @@ + + + + + + +<n>7</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text1622886112411078460

240

0000bbullewhite1000Il est important de bien comprendre la culture d’entreprise, les habitudes des personnes qui la compose.

Pour cela, il faut d’abord observer. Regarder ce que les gens ont pour habitude de faire comme par exemple aller manger tous ensemble à la cafétéria.
Dans ce cas, refuser d’aller manger avec vos collègues peut être mal perçu, mieux vaut suivre le mouvement et découvrir ses collègues.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;317;318;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page8.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page6.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page8.jpg b/scorm-s-integrer-ds-equipe/data/page8.jpg new file mode 100644 index 0000000..531dea7 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page8.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page8.xml b/scorm-s-integrer-ds-equipe/data/page8.xml new file mode 100644 index 0000000..df372ac --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page8.xml @@ -0,0 +1,46 @@ + + + + + + +<n>8</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +text1622886112412286444

232

0000bbullewhite1000Souvent les grandes entreprises organisent des parcours d’intégration avec l’aide d’un livret d’accueil.

Il ne faut pas négliger ses aides qui permettront de comprendre rapidement l’entreprise avec ses valeurs et ses enjeux.

Posez des questions, montrez-leur votre curiosité et n’hésitez pas à demander si vous ne savez pas quelque chose.

]]>
bulle19b3b-1b36b36b2b3b19b-16047045.png;617;313;50bulle4b3b-1b36b36b2b34b3b-16047045.png;273;318;40#000000Center +border: solid 2px #0B243B;background-color:White;1
img +images/posi02.png +718128146590268356146

590

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page9.xml +White +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page7.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/data/page9.jpg b/scorm-s-integrer-ds-equipe/data/page9.jpg new file mode 100644 index 0000000..8688043 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/data/page9.jpg differ diff --git a/scorm-s-integrer-ds-equipe/data/page9.xml b/scorm-s-integrer-ds-equipe/data/page9.xml new file mode 100644 index 0000000..91aede8 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/data/page9.xml @@ -0,0 +1,68 @@ + + + + + + +<n>9</n><data><![CDATA[]]></data> + + + + +28 + + + +1 +0 +0 + +0 +
0
+
0
+0 +material-panel38113752044022220442

440

000010000#000000 +White +1 +
text16-190318116980462

92

0000bbullewhite1000A t’on avis quels sont les 2 élements qui peuvent être mal perçu ?

]]>
bulle4b3b-1b36b36b2b34b3b-16047045.png;157;206;40bulle4b3b-1b4b36b2b34b3b-16047045.png;9;172;40#000000Center +border: solid 2px #0B243B;background-color:White;1
qcm +barre +17 +1 +0 + +QCM6t8h541625446630634306422

306

0000check10000 +51 + + +0 +0 + +#000000 + +#BCF5A9 +1 +
+text164161664506434240420

48

00001000Coche les 2 réponses

]]>
#000000Center +border: solid 0px #808080;1
img +images/posi03.png +127286141484-122258141

484

00001000 + +1 + + + +
+material-top-bar-1-196470-1-1484

70

000010000#000000 +#640064 +2 +
text182210676502210435

50

00001000Comment s’intégrer dans l’équipe et faire preuve de coopération ?

]]>
WhiteLeftCenter +border: solid 0px #808080;2
material-buttonsystem-next882635565640470456

56

000010000data/page10.xml +isokWhite +#7100E1 +3 +
material-buttonsystem-prev2263556562270656

56

000010000data/page8.xml +White +#7100E1 +3 +
\ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/fx/active-slide.png b/scorm-s-integrer-ds-equipe/fx/active-slide.png new file mode 100644 index 0000000..44aa306 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/active-slide.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/arrowsortable.png b/scorm-s-integrer-ds-equipe/fx/arrowsortable.png new file mode 100644 index 0000000..d058034 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/arrowsortable.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/black_fleche_d.png b/scorm-s-integrer-ds-equipe/fx/black_fleche_d.png new file mode 100644 index 0000000..a9cdedd Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/black_fleche_d.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/black_fleche_g.png b/scorm-s-integrer-ds-equipe/fx/black_fleche_g.png new file mode 100644 index 0000000..24bba44 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/black_fleche_g.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/bouton_left.png b/scorm-s-integrer-ds-equipe/fx/bouton_left.png new file mode 100644 index 0000000..a0e3d8d Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/bouton_left.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/bouton_precedent.png b/scorm-s-integrer-ds-equipe/fx/bouton_precedent.png new file mode 100644 index 0000000..603c6d3 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/bouton_precedent.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/bouton_right.png b/scorm-s-integrer-ds-equipe/fx/bouton_right.png new file mode 100644 index 0000000..fd63209 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/bouton_right.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/bouton_suivant.png b/scorm-s-integrer-ds-equipe/fx/bouton_suivant.png new file mode 100644 index 0000000..5b65005 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/bouton_suivant.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/bullewhite.png b/scorm-s-integrer-ds-equipe/fx/bullewhite.png new file mode 100644 index 0000000..160ce2c Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/bullewhite.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/close-mini.png b/scorm-s-integrer-ds-equipe/fx/close-mini.png new file mode 100644 index 0000000..01d0230 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/close-mini.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/close.png b/scorm-s-integrer-ds-equipe/fx/close.png new file mode 100644 index 0000000..209dd67 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/close.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/close2.png b/scorm-s-integrer-ds-equipe/fx/close2.png new file mode 100644 index 0000000..db2f591 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/close2.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/closeminifenetre.png b/scorm-s-integrer-ds-equipe/fx/closeminifenetre.png new file mode 100644 index 0000000..5b80f57 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/closeminifenetre.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/continue.png b/scorm-s-integrer-ds-equipe/fx/continue.png new file mode 100644 index 0000000..57e0dda Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/continue.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/cross.png b/scorm-s-integrer-ds-equipe/fx/cross.png new file mode 100644 index 0000000..32ce649 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/cross.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/cursor-minimal.gif b/scorm-s-integrer-ds-equipe/fx/cursor-minimal.gif new file mode 100644 index 0000000..d398986 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/cursor-minimal.gif differ diff --git a/scorm-s-integrer-ds-equipe/fx/cursor.gif b/scorm-s-integrer-ds-equipe/fx/cursor.gif new file mode 100644 index 0000000..3d31aa3 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/cursor.gif differ diff --git a/scorm-s-integrer-ds-equipe/fx/cursorlarge.gif b/scorm-s-integrer-ds-equipe/fx/cursorlarge.gif new file mode 100644 index 0000000..5c83d70 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/cursorlarge.gif differ diff --git a/scorm-s-integrer-ds-equipe/fx/cursorlarge2.gif b/scorm-s-integrer-ds-equipe/fx/cursorlarge2.gif new file mode 100644 index 0000000..49b806e Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/cursorlarge2.gif differ diff --git a/scorm-s-integrer-ds-equipe/fx/cursorlarge3.gif b/scorm-s-integrer-ds-equipe/fx/cursorlarge3.gif new file mode 100644 index 0000000..a24fb88 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/cursorlarge3.gif differ diff --git a/scorm-s-integrer-ds-equipe/fx/droitbulleleft.png b/scorm-s-integrer-ds-equipe/fx/droitbulleleft.png new file mode 100644 index 0000000..9927a46 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/droitbulleleft.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/droitbulleright.png b/scorm-s-integrer-ds-equipe/fx/droitbulleright.png new file mode 100644 index 0000000..4d915e6 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/droitbulleright.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/fleche.png b/scorm-s-integrer-ds-equipe/fx/fleche.png new file mode 100644 index 0000000..0e23268 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/fleche.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/inactive-slide.png b/scorm-s-integrer-ds-equipe/fx/inactive-slide.png new file mode 100644 index 0000000..5221ae5 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/inactive-slide.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/infos-plus.png b/scorm-s-integrer-ds-equipe/fx/infos-plus.png new file mode 100644 index 0000000..3e5bb62 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/infos-plus.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/leftslide.png b/scorm-s-integrer-ds-equipe/fx/leftslide.png new file mode 100644 index 0000000..ceaca32 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/leftslide.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/linkbulleleft.png b/scorm-s-integrer-ds-equipe/fx/linkbulleleft.png new file mode 100644 index 0000000..53cd9db Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/linkbulleleft.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/move.png b/scorm-s-integrer-ds-equipe/fx/move.png new file mode 100644 index 0000000..e0a2ce1 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/move.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/ombreslide.png b/scorm-s-integrer-ds-equipe/fx/ombreslide.png new file mode 100644 index 0000000..64a6ce3 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/ombreslide.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/pola-background.png b/scorm-s-integrer-ds-equipe/fx/pola-background.png new file mode 100644 index 0000000..d0a64dc Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/pola-background.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/printbtn.png b/scorm-s-integrer-ds-equipe/fx/printbtn.png new file mode 100644 index 0000000..65a8bba Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/printbtn.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/qcm/check0.png b/scorm-s-integrer-ds-equipe/fx/qcm/check0.png new file mode 100644 index 0000000..93ec0c4 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/qcm/check0.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/qcm/check1.png b/scorm-s-integrer-ds-equipe/fx/qcm/check1.png new file mode 100644 index 0000000..630f17c Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/qcm/check1.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/reflect.png b/scorm-s-integrer-ds-equipe/fx/reflect.png new file mode 100644 index 0000000..f9ff483 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/reflect.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/regle.png b/scorm-s-integrer-ds-equipe/fx/regle.png new file mode 100644 index 0000000..4f077a9 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/regle.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/rightslide.png b/scorm-s-integrer-ds-equipe/fx/rightslide.png new file mode 100644 index 0000000..a76090c Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/rightslide.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/transparent.png b/scorm-s-integrer-ds-equipe/fx/transparent.png new file mode 100644 index 0000000..c0a3cad Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/transparent.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/valid.png b/scorm-s-integrer-ds-equipe/fx/valid.png new file mode 100644 index 0000000..e2576f7 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/valid.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/viewer.png b/scorm-s-integrer-ds-equipe/fx/viewer.png new file mode 100644 index 0000000..873b575 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/viewer.png differ diff --git a/scorm-s-integrer-ds-equipe/fx/wrong.png b/scorm-s-integrer-ds-equipe/fx/wrong.png new file mode 100644 index 0000000..978f55e Binary files /dev/null and b/scorm-s-integrer-ds-equipe/fx/wrong.png differ diff --git a/scorm-s-integrer-ds-equipe/images/2019x2019x2x16x17x41x31xpresenter2.svg b/scorm-s-integrer-ds-equipe/images/2019x2019x2x16x17x41x31xpresenter2.svg new file mode 100644 index 0000000..6bb459f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/images/2019x2019x2x16x17x41x31xpresenter2.svg @@ -0,0 +1,2217 @@ + +image/svg+xml \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/images/bilan.png b/scorm-s-integrer-ds-equipe/images/bilan.png new file mode 100644 index 0000000..29dbf9b Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/bilan.png differ diff --git a/scorm-s-integrer-ds-equipe/images/bulle19b3b-1b36b36b2b3b19b-16047045.png b/scorm-s-integrer-ds-equipe/images/bulle19b3b-1b36b36b2b3b19b-16047045.png new file mode 100644 index 0000000..8a92ea2 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/bulle19b3b-1b36b36b2b3b19b-16047045.png differ diff --git a/scorm-s-integrer-ds-equipe/images/bulle36b3b-1b4b37b2b36b37b-16047045.png b/scorm-s-integrer-ds-equipe/images/bulle36b3b-1b4b37b2b36b37b-16047045.png new file mode 100644 index 0000000..d315c43 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/bulle36b3b-1b4b37b2b36b37b-16047045.png differ diff --git a/scorm-s-integrer-ds-equipe/images/bulle4b3b-1b36b36b2b34b3b-16047045.png b/scorm-s-integrer-ds-equipe/images/bulle4b3b-1b36b36b2b34b3b-16047045.png new file mode 100644 index 0000000..f40d15b Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/bulle4b3b-1b36b36b2b34b3b-16047045.png differ diff --git a/scorm-s-integrer-ds-equipe/images/bulle4b3b-1b4b36b2b34b3b-16047045.png b/scorm-s-integrer-ds-equipe/images/bulle4b3b-1b4b36b2b34b3b-16047045.png new file mode 100644 index 0000000..53550a1 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/bulle4b3b-1b4b36b2b34b3b-16047045.png differ diff --git a/scorm-s-integrer-ds-equipe/images/bureauv480780.jpg b/scorm-s-integrer-ds-equipe/images/bureauv480780.jpg new file mode 100644 index 0000000..81d7ae3 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/bureauv480780.jpg differ diff --git a/scorm-s-integrer-ds-equipe/images/bureauv960.jpg b/scorm-s-integrer-ds-equipe/images/bureauv960.jpg new file mode 100644 index 0000000..8e920f6 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/bureauv960.jpg differ diff --git a/scorm-s-integrer-ds-equipe/images/fond-white.png b/scorm-s-integrer-ds-equipe/images/fond-white.png new file mode 100644 index 0000000..e46ae61 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/fond-white.png differ diff --git a/scorm-s-integrer-ds-equipe/images/low-bureauv480780.jpg b/scorm-s-integrer-ds-equipe/images/low-bureauv480780.jpg new file mode 100644 index 0000000..f1076f1 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/low-bureauv480780.jpg differ diff --git a/scorm-s-integrer-ds-equipe/images/low-bureauv960.jpg b/scorm-s-integrer-ds-equipe/images/low-bureauv960.jpg new file mode 100644 index 0000000..2240f8a Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/low-bureauv960.jpg differ diff --git a/scorm-s-integrer-ds-equipe/images/mat-left.png b/scorm-s-integrer-ds-equipe/images/mat-left.png new file mode 100644 index 0000000..4823782 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/mat-left.png differ diff --git a/scorm-s-integrer-ds-equipe/images/mat-right.png b/scorm-s-integrer-ds-equipe/images/mat-right.png new file mode 100644 index 0000000..4c1bf30 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/mat-right.png differ diff --git a/scorm-s-integrer-ds-equipe/images/posi00.png b/scorm-s-integrer-ds-equipe/images/posi00.png new file mode 100644 index 0000000..cebd794 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/posi00.png differ diff --git a/scorm-s-integrer-ds-equipe/images/posi01.png b/scorm-s-integrer-ds-equipe/images/posi01.png new file mode 100644 index 0000000..f97ecab Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/posi01.png differ diff --git a/scorm-s-integrer-ds-equipe/images/posi02.png b/scorm-s-integrer-ds-equipe/images/posi02.png new file mode 100644 index 0000000..a51d187 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/posi02.png differ diff --git a/scorm-s-integrer-ds-equipe/images/posi03.png b/scorm-s-integrer-ds-equipe/images/posi03.png new file mode 100644 index 0000000..5a44a3a Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/posi03.png differ diff --git a/scorm-s-integrer-ds-equipe/images/progress-bar-fond.png b/scorm-s-integrer-ds-equipe/images/progress-bar-fond.png new file mode 100644 index 0000000..83ee33e Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/progress-bar-fond.png differ diff --git a/scorm-s-integrer-ds-equipe/images/progress-bar-mask.png b/scorm-s-integrer-ds-equipe/images/progress-bar-mask.png new file mode 100644 index 0000000..fa8cea6 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/progress-bar-mask.png differ diff --git a/scorm-s-integrer-ds-equipe/images/responsive00.png b/scorm-s-integrer-ds-equipe/images/responsive00.png new file mode 100644 index 0000000..41cd38b Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/responsive00.png differ diff --git a/scorm-s-integrer-ds-equipe/images/responsive01.png b/scorm-s-integrer-ds-equipe/images/responsive01.png new file mode 100644 index 0000000..cf31133 Binary files /dev/null and b/scorm-s-integrer-ds-equipe/images/responsive01.png differ diff --git a/scorm-s-integrer-ds-equipe/ims_xml.xsd b/scorm-s-integrer-ds-equipe/ims_xml.xsd new file mode 100644 index 0000000..510d129 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/ims_xml.xsd @@ -0,0 +1,20 @@ + + + + + + In namespace-aware XML processors, the "xml" prefix is bound to the namespace name http://www.w3.org/XML/1998/namespace. + Do not reference this file in XML instances + + + + Refers to universal XML 1.0 lang attribute + + + + + Refers to XML Base: http://www.w3.org/TR/xmlbase + + + + diff --git a/scorm-s-integrer-ds-equipe/imscp_rootv1p1p2.xsd b/scorm-s-integrer-ds-equipe/imscp_rootv1p1p2.xsd new file mode 100644 index 0000000..6f7c66e --- /dev/null +++ b/scorm-s-integrer-ds-equipe/imscp_rootv1p1p2.xsd @@ -0,0 +1,345 @@ + + + + + + + + + + + + + + + DRAFT XSD for IMS Content Packaging version 1.1 DRAFT + Copyright (c) 2001 IMS GLC, Inc. + 2000-04-21, Adjustments by T.D. Wason from CP 1.0. + 2001-02-22, T.D.Wason: Modify for 2000-10-24 XML-Schema version. Modified to support extension. + 2001-03-12, T.D.Wason: Change filename, target and meta-data namespaces and meta-data fielname. Add meta-data to itemType, fileType and organizationType. + Do not define namespaces for xml in XML instances generated from this xsd. + Imports IMS meta-data xsd, lower case element names. + This XSD provides a reference to the IMS meta-data root element as imsmd:record + If the IMS meta-data is to be used in the XML instance then the instance must define an IMS meta-data prefix with a namespace. The meta-data targetNamespace should be used. + 2001-03-20, Thor Anderson: Remove manifestref, change resourceref back to identifierref, change manifest back to contained by manifest. --Tom Wason: manifest may contain _none_ or more manifests. + 2001-04-13 Tom Wason: corrected attirbute name structure. Was misnamed type. + 2001-05-14 Schawn Thropp: Made all complexType extensible with the group.any + Added the anyAttribute to all complexTypes. Changed the href attribute on the fileType and resourceType to xsd:string + Changed the maxLength of the href, identifierref, parameters, structure attributes to match the Information model. + 2001-07-25 Schawn Thropp: Changed the namespace for the Schema of Schemas to the 5/2/2001 W3C XML Schema + Recommendation. attributeGroup attr.imsmd deleted, was not used anywhere. Any attribute declarations that have + use = "default" changed to use="optional" - attr.structure.req. + Any attribute declarations that have value="somevalue" changed to default="somevalue", + attr.structure.req (hierarchical). Removed references to IMS MD Version 1.1. + Modified attribute group "attr.resourcetype.req" to change use from optional + to required to match the information model. As a result the default value also needed to be removed + Name change for XSD. Changed to match version of CP Spec + + + + Inclusions and Imports + + + + + + Attribute Declarations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + element groups + + + + + Any namespaced element from any namespace may be included within an "any" element. The namespace for the imported element must be defined in the instance, and the schema must be imported. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/scorm-s-integrer-ds-equipe/imsmanifest.xml b/scorm-s-integrer-ds-equipe/imsmanifest.xml new file mode 100644 index 0000000..43f9e15 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/imsmanifest.xml @@ -0,0 +1,35 @@ + + + + + + + + + Comment s’intégrer dans l’équipe et faire preuve de coopération ? + + + Comment s’intégrer dans l’équipe et faire preuve de coopération ? + + + #FFFFFF + + + + + + + Comment s’intégrer dans l’équipe et faire preuve de coopération ? + + Comment s’intégrer dans l’équipe et faire preuve de coopération ? + 75 + + + + + + + + + + diff --git a/scorm-s-integrer-ds-equipe/imsmd_rootv1p2p1.xsd b/scorm-s-integrer-ds-equipe/imsmd_rootv1p2p1.xsd new file mode 100644 index 0000000..5c07c58 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/imsmd_rootv1p2p1.xsd @@ -0,0 +1,573 @@ + + + + + + + + + + + 2001-04-26 T.D.Wason. IMS meta-data 1.2 XML-Schema. + 2001-06-07 S.E.Thropp. Changed the multiplicity on all elements to match the + Final 1.2 Binding Specification. + Changed all elements that use the langstringType to a multiplicy of 1 or more + Changed centity in the contribute element to have a multiplicity of 0 or more. + Changed the requirement element to have a multiplicity of 0 or more. + 2001-07-25 Schawn Thropp. Updates to bring the XSD up to speed with the W3C + XML Schema Recommendation. The following changes were made: Change the + namespace to reference the 5/2/2001 W3C XML Schema Recommendation,the base + type for the durtimeType, simpleType, was changed from timeDuration to duration. + Any attribute declarations that have use="default" had to change to use="optional" + - attr.type. Any attribute declarations that have value ="somevalue" had to change + to default = "somevalue" - attr.type (URI) + 2001-09-04 Schawn Thropp + Changed the targetNamespace and namespace of schema to reflect version change + + + + + + + + + + + + + + + + + + + + Any namespaced element from any namespace may be used for an "any" element. The namespace for the imported element must be defined in the instance, and the schema must be imported. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/scorm-s-integrer-ds-equipe/index.html b/scorm-s-integrer-ds-equipe/index.html new file mode 100644 index 0000000..24fbf8f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/index.html @@ -0,0 +1,63 @@ + + + +Comment s’intégrer dans l’équipe et faire preuve de coopération ? + + + + + + + + + + + + + + + +
...
+ + + + + +
+
+ +
atvicb434599
comment-s’integrer-dans-l’equipe-et-faire-preuve-de-cooperation
+ + + + + + + + + + + + + + + + + + + + +
+
-
+ +
+ + diff --git a/scorm-s-integrer-ds-equipe/javascript/hand-1.3.8.js b/scorm-s-integrer-ds-equipe/javascript/hand-1.3.8.js new file mode 100644 index 0000000..33954a5 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/javascript/hand-1.3.8.js @@ -0,0 +1,750 @@ +var HANDJS = HANDJS || {}; + +(function () { + // If the user agent already supports Pointer Events, do nothing + if (window.PointerEvent) + return; + + // Polyfilling indexOf for old browsers + if (!Array.prototype.indexOf) { + Array.prototype.indexOf = function (searchElement) { + var t = Object(this); + var len = t.length >>> 0; + if (len === 0) { + return -1; + } + var n = 0; + if (arguments.length > 0) { + n = Number(arguments[1]); + if (n != n) { // shortcut for verifying if it's NaN + n = 0; + } else if (n != 0 && n != Infinity && n != -Infinity) { + n = (n > 0 || -1) * Math.floor(Math.abs(n)); + } + } + if (n >= len) { + return -1; + } + var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0); + for (; k < len; k++) { + if (k in t && t[k] === searchElement) { + return k; + } + } + return -1; + }; + } + //Polyfilling forEach for old browsers + if (!Array.prototype.forEach) { + Array.prototype.forEach = function (method, thisArg) { + if (!this || !(method instanceof Function)) + throw new TypeError(); + for (var i = 0; i < this.length; i++) + method.call(thisArg, this[i], i, this); + } + } + // Polyfilling trim for old browsers + if (!String.prototype.trim) { + String.prototype.trim = function () { + return this.replace(/^\s+|\s+$/, ''); + }; + } + + // Installing Hand.js + var supportedEventsNames = ["pointerdown", "pointerup", "pointermove", "pointerover", "pointerout", "pointercancel", "pointerenter", "pointerleave"]; + var upperCaseEventsNames = ["PointerDown", "PointerUp", "PointerMove", "PointerOver", "PointerOut", "PointerCancel", "PointerEnter", "PointerLeave"]; + + var POINTER_TYPE_TOUCH = "touch"; + var POINTER_TYPE_PEN = "pen"; + var POINTER_TYPE_MOUSE = "mouse"; + + var previousTargets = {}; + + var checkPreventDefault = function (node) { + while (node && !node.handjs_forcePreventDefault) { + node = node.parentNode; + } + return !!node || window.handjs_forcePreventDefault; + }; + + // Touch events + var generateTouchClonedEvent = function (sourceEvent, newName, canBubble, target, relatedTarget) { + // Considering touch events are almost like super mouse events + var evObj; + + if (document.createEvent) { + evObj = document.createEvent('MouseEvents'); + evObj.initMouseEvent(newName, canBubble, true, window, 1, sourceEvent.screenX, sourceEvent.screenY, + sourceEvent.clientX, sourceEvent.clientY, sourceEvent.ctrlKey, sourceEvent.altKey, + sourceEvent.shiftKey, sourceEvent.metaKey, sourceEvent.button, relatedTarget || sourceEvent.relatedTarget); + } + else { + evObj = document.createEventObject(); + evObj.screenX = sourceEvent.screenX; + evObj.screenY = sourceEvent.screenY; + evObj.clientX = sourceEvent.clientX; + evObj.clientY = sourceEvent.clientY; + evObj.ctrlKey = sourceEvent.ctrlKey; + evObj.altKey = sourceEvent.altKey; + evObj.shiftKey = sourceEvent.shiftKey; + evObj.metaKey = sourceEvent.metaKey; + evObj.button = sourceEvent.button; + evObj.relatedTarget = relatedTarget || sourceEvent.relatedTarget; + } + // offsets + if (evObj.offsetX === undefined) { + if (sourceEvent.offsetX !== undefined) { + + // For Opera which creates readonly properties + if (Object && Object.defineProperty !== undefined) { + Object.defineProperty(evObj, "offsetX", { + writable: true + }); + Object.defineProperty(evObj, "offsetY", { + writable: true + }); + } + + evObj.offsetX = sourceEvent.offsetX; + evObj.offsetY = sourceEvent.offsetY; + } else if (Object && Object.defineProperty !== undefined) { + Object.defineProperty(evObj, "offsetX", { + get: function () { + if (this.currentTarget && this.currentTarget.offsetLeft) { + return sourceEvent.clientX - this.currentTarget.offsetLeft; + } + return sourceEvent.clientX; + } + }); + Object.defineProperty(evObj, "offsetY", { + get: function () { + if (this.currentTarget && this.currentTarget.offsetTop) { + return sourceEvent.clientY - this.currentTarget.offsetTop; + } + return sourceEvent.clientY; + } + }); + } + else if (sourceEvent.layerX !== undefined) { + evObj.offsetX = sourceEvent.layerX - sourceEvent.currentTarget.offsetLeft; + evObj.offsetY = sourceEvent.layerY - sourceEvent.currentTarget.offsetTop; + } + } + + // adding missing properties + + if (sourceEvent.isPrimary !== undefined) + evObj.isPrimary = sourceEvent.isPrimary; + else + evObj.isPrimary = true; + + if (sourceEvent.pressure) + evObj.pressure = sourceEvent.pressure; + else { + var button = 0; + + if (sourceEvent.which !== undefined) + button = sourceEvent.which; + else if (sourceEvent.button !== undefined) { + button = sourceEvent.button; + } + evObj.pressure = (button == 0) ? 0 : 0.5; + } + + + if (sourceEvent.rotation) + evObj.rotation = sourceEvent.rotation; + else + evObj.rotation = 0; + + // Timestamp + if (sourceEvent.hwTimestamp) + evObj.hwTimestamp = sourceEvent.hwTimestamp; + else + evObj.hwTimestamp = 0; + + // Tilts + if (sourceEvent.tiltX) + evObj.tiltX = sourceEvent.tiltX; + else + evObj.tiltX = 0; + + if (sourceEvent.tiltY) + evObj.tiltY = sourceEvent.tiltY; + else + evObj.tiltY = 0; + + // Width and Height + if (sourceEvent.height) + evObj.height = sourceEvent.height; + else + evObj.height = 0; + + if (sourceEvent.width) + evObj.width = sourceEvent.width; + else + evObj.width = 0; + + // preventDefault + evObj.preventDefault = function () { + if (sourceEvent.preventDefault !== undefined) + sourceEvent.preventDefault(); + }; + + // stopPropagation + if (evObj.stopPropagation !== undefined) { + var current = evObj.stopPropagation; + evObj.stopPropagation = function () { + if (sourceEvent.stopPropagation !== undefined) + sourceEvent.stopPropagation(); + current.call(this); + }; + } + + // Pointer values + evObj.pointerId = sourceEvent.pointerId; + evObj.pointerType = sourceEvent.pointerType; + + switch (evObj.pointerType) {// Old spec version check + case 2: + evObj.pointerType = POINTER_TYPE_TOUCH; + break; + case 3: + evObj.pointerType = POINTER_TYPE_PEN; + break; + case 4: + evObj.pointerType = POINTER_TYPE_MOUSE; + break; + } + + // Fire event + if (target) + target.dispatchEvent(evObj); + else if (sourceEvent.target) { + sourceEvent.target.dispatchEvent(evObj); + } else { + sourceEvent.srcElement.fireEvent("on" + getMouseEquivalentEventName(newName), evObj); // We must fallback to mouse event for very old browsers + } + }; + + var generateMouseProxy = function (evt, eventName, canBubble, target, relatedTarget) { + evt.pointerId = 1; + evt.pointerType = POINTER_TYPE_MOUSE; + generateTouchClonedEvent(evt, eventName, canBubble, target, relatedTarget); + }; + + var generateTouchEventProxy = function (name, touchPoint, target, eventObject, canBubble, relatedTarget) { + var touchPointId = touchPoint.identifier + 2; // Just to not override mouse id + + touchPoint.pointerId = touchPointId; + touchPoint.pointerType = POINTER_TYPE_TOUCH; + touchPoint.currentTarget = target; + + if (eventObject.preventDefault !== undefined) { + touchPoint.preventDefault = function () { + eventObject.preventDefault(); + }; + } + + generateTouchClonedEvent(touchPoint, name, canBubble, target, relatedTarget); + }; + + var checkEventRegistration = function (node, eventName) { + return node.__handjsGlobalRegisteredEvents && node.__handjsGlobalRegisteredEvents[eventName]; + } + var findEventRegisteredNode = function (node, eventName) { + while (node && !checkEventRegistration(node, eventName)) + node = node.parentNode; + if (node) + return node; + else if (checkEventRegistration(window, eventName)) + return window; + }; + + var generateTouchEventProxyIfRegistered = function (eventName, touchPoint, target, eventObject, canBubble, relatedTarget) { // Check if user registered this event + if (findEventRegisteredNode(target, eventName)) { + generateTouchEventProxy(eventName, touchPoint, target, eventObject, canBubble, relatedTarget); + } + }; + + //var handleOtherEvent = function (eventObject, name, useLocalTarget, checkRegistration) { + // if (eventObject.preventManipulation) + // eventObject.preventManipulation(); + + // for (var i = 0; i < eventObject.changedTouches.length; ++i) { + // var touchPoint = eventObject.changedTouches[i]; + + // if (useLocalTarget) { + // previousTargets[touchPoint.identifier] = touchPoint.target; + // } + + // if (checkRegistration) { + // generateTouchEventProxyIfRegistered(name, touchPoint, previousTargets[touchPoint.identifier], eventObject, true); + // } else { + // generateTouchEventProxy(name, touchPoint, previousTargets[touchPoint.identifier], eventObject, true); + // } + // } + //}; + + var getMouseEquivalentEventName = function (eventName) { + return eventName.toLowerCase().replace("pointer", "mouse"); + }; + + var getPrefixEventName = function (prefix, eventName) { + var upperCaseIndex = supportedEventsNames.indexOf(eventName); + var newEventName = prefix + upperCaseEventsNames[upperCaseIndex]; + + return newEventName; + }; + + var registerOrUnregisterEvent = function (item, name, func, enable) { + if (item.__handjsRegisteredEvents === undefined) { + item.__handjsRegisteredEvents = []; + } + + if (enable) { + if (item.__handjsRegisteredEvents[name] !== undefined) { + item.__handjsRegisteredEvents[name]++; + return; + } + + item.__handjsRegisteredEvents[name] = 1; + item.addEventListener(name, func, false); + } else { + + if (item.__handjsRegisteredEvents.indexOf(name) !== -1) { + item.__handjsRegisteredEvents[name]--; + + if (item.__handjsRegisteredEvents[name] != 0) { + return; + } + } + item.removeEventListener(name, func); + item.__handjsRegisteredEvents[name] = 0; + } + }; + + var setTouchAware = function (item, eventName, enable) { + // Leaving tokens + if (!item.__handjsGlobalRegisteredEvents) { + item.__handjsGlobalRegisteredEvents = []; + } + if (enable) { + if (item.__handjsGlobalRegisteredEvents[eventName] !== undefined) { + item.__handjsGlobalRegisteredEvents[eventName]++; + return; + } + item.__handjsGlobalRegisteredEvents[eventName] = 1; + } else { + if (item.__handjsGlobalRegisteredEvents[eventName] !== undefined) { + item.__handjsGlobalRegisteredEvents[eventName]--; + if (item.__handjsGlobalRegisteredEvents[eventName] < 0) { + item.__handjsGlobalRegisteredEvents[eventName] = 0; + } + } + } + + var nameGenerator; + var eventGenerator; + if (window.MSPointerEvent) { + nameGenerator = function (name) { return getPrefixEventName("MS", name); }; + eventGenerator = generateTouchClonedEvent; + } + else { + nameGenerator = getMouseEquivalentEventName; + eventGenerator = generateMouseProxy; + } + switch (eventName) { + case "pointerenter": + case "pointerleave": + var targetEvent = nameGenerator(eventName); + if (item['on' + targetEvent.toLowerCase()] !== undefined) { + registerOrUnregisterEvent(item, targetEvent, function (evt) { eventGenerator(evt, eventName); }, enable); + } + break; + } + }; + + // Intercept addEventListener calls by changing the prototype + var interceptAddEventListener = function (root) { + var current = root.prototype ? root.prototype.addEventListener : root.addEventListener; + + var customAddEventListener = function (name, func, capture) { + // Branch when a PointerXXX is used + if (supportedEventsNames.indexOf(name) != -1) { + setTouchAware(this, name, true); + } + + if (current === undefined) { + this.attachEvent("on" + getMouseEquivalentEventName(name), func); + } else { + current.call(this, name, func, capture); + } + }; + + if (root.prototype) { + root.prototype.addEventListener = customAddEventListener; + } else { + root.addEventListener = customAddEventListener; + } + }; + + // Intercept removeEventListener calls by changing the prototype + var interceptRemoveEventListener = function (root) { + var current = root.prototype ? root.prototype.removeEventListener : root.removeEventListener; + + var customRemoveEventListener = function (name, func, capture) { + // Release when a PointerXXX is used + if (supportedEventsNames.indexOf(name) != -1) { + setTouchAware(this, name, false); + } + + if (current === undefined) { + this.detachEvent(getMouseEquivalentEventName(name), func); + } else { + current.call(this, name, func, capture); + } + }; + if (root.prototype) { + root.prototype.removeEventListener = customRemoveEventListener; + } else { + root.removeEventListener = customRemoveEventListener; + } + }; + + // Hooks + interceptAddEventListener(window); + interceptAddEventListener(window.HTMLElement || window.Element); + interceptAddEventListener(document); + interceptAddEventListener(HTMLBodyElement); + interceptAddEventListener(HTMLDivElement); + interceptAddEventListener(HTMLImageElement); + interceptAddEventListener(HTMLUListElement); + interceptAddEventListener(HTMLAnchorElement); + interceptAddEventListener(HTMLLIElement); + interceptAddEventListener(HTMLTableElement); + if (window.HTMLSpanElement) { + interceptAddEventListener(HTMLSpanElement); + } + if (window.HTMLCanvasElement) { + interceptAddEventListener(HTMLCanvasElement); + } + if (window.SVGElement) { + interceptAddEventListener(SVGElement); + } + + interceptRemoveEventListener(window); + interceptRemoveEventListener(window.HTMLElement || window.Element); + interceptRemoveEventListener(document); + interceptRemoveEventListener(HTMLBodyElement); + interceptRemoveEventListener(HTMLDivElement); + interceptRemoveEventListener(HTMLImageElement); + interceptRemoveEventListener(HTMLUListElement); + interceptRemoveEventListener(HTMLAnchorElement); + interceptRemoveEventListener(HTMLLIElement); + interceptRemoveEventListener(HTMLTableElement); + if (window.HTMLSpanElement) { + interceptRemoveEventListener(HTMLSpanElement); + } + if (window.HTMLCanvasElement) { + interceptRemoveEventListener(HTMLCanvasElement); + } + if (window.SVGElement) { + interceptRemoveEventListener(SVGElement); + } + + // Prevent mouse event from being dispatched after Touch Events action + var touching = false; + var touchTimer = -1; + + function setTouchTimer() { + touching = true; + clearTimeout(touchTimer); + touchTimer = setTimeout(function () { + touching = false; + }, 700); + // 1. Mobile browsers dispatch mouse events 300ms after touchend + // 2. Chrome for Android dispatch mousedown for long-touch about 650ms + // Result: Blocking Mouse Events for 700ms. + } + + function getDomUpperHierarchy(node) { + var nodes = []; + if (node) { + nodes.unshift(node); + while (node.parentNode) { + nodes.unshift(node.parentNode); + node = node.parentNode; + } + } + return nodes; + } + + function getFirstCommonNode(node1, node2) { + var parents1 = getDomUpperHierarchy(node1); + var parents2 = getDomUpperHierarchy(node2); + + var lastmatch = null + while (parents1.length > 0 && parents1[0] == parents2.shift()) + lastmatch = parents1.shift(); + return lastmatch; + } + + //generateProxy receives a node to dispatch the event + function dispatchPointerEnter(currentTarget, relatedTarget, generateProxy) { + var commonParent = getFirstCommonNode(currentTarget, relatedTarget); + var node = currentTarget; + var nodelist = []; + while (node && node != commonParent) {//target range: this to the direct child of parent relatedTarget + if (checkEventRegistration(node, "pointerenter")) //check if any parent node has pointerenter + nodelist.push(node); + node = node.parentNode; + } + while (nodelist.length > 0) + generateProxy(nodelist.pop()); + } + + //generateProxy receives a node to dispatch the event + function dispatchPointerLeave(currentTarget, relatedTarget, generateProxy) { + var commonParent = getFirstCommonNode(currentTarget, relatedTarget); + var node = currentTarget; + while (node && node != commonParent) {//target range: this to the direct child of parent relatedTarget + if (checkEventRegistration(node, "pointerleave"))//check if any parent node has pointerleave + generateProxy(node); + node = node.parentNode; + } + } + + // Handling events on window to prevent unwanted super-bubbling + // All mouse events are affected by touch fallback + function applySimpleEventTunnels(nameGenerator, eventGenerator) { + ["pointerdown", "pointermove", "pointerup", "pointerover", "pointerout"].forEach(function (eventName) { + window.addEventListener(nameGenerator(eventName), function (evt) { + if(evt.target){ + if(!touching && findEventRegisteredNode(evt.target, eventName)){ + eventGenerator(evt, eventName, true); + } + } + }); + }); + if (window['on' + nameGenerator("pointerenter").toLowerCase()] === undefined) + window.addEventListener(nameGenerator("pointerover"), function (evt) { + if (touching) + return; + var foundNode = findEventRegisteredNode(evt.target, "pointerenter"); + if (!foundNode || foundNode === window) + return; + else if (!foundNode.contains(evt.relatedTarget)) { + dispatchPointerEnter(foundNode, evt.relatedTarget, function (targetNode) { + eventGenerator(evt, "pointerenter", false, targetNode, evt.relatedTarget); + }); + } + }); + if (window['on' + nameGenerator("pointerleave").toLowerCase()] === undefined) + window.addEventListener(nameGenerator("pointerout"), function (evt) { + if (touching) + return; + var foundNode = findEventRegisteredNode(evt.target, "pointerleave"); + if (!foundNode || foundNode === window) + return; + else if (!foundNode.contains(evt.relatedTarget)) { + dispatchPointerLeave(foundNode, evt.relatedTarget, function (targetNode) { + eventGenerator(evt, "pointerleave", false, targetNode, evt.relatedTarget); + }); + } + }); + } + + (function () { + if (window.MSPointerEvent) { + //IE 10 + applySimpleEventTunnels( + function (name) { return getPrefixEventName("MS", name); }, + generateTouchClonedEvent); + } + else { + applySimpleEventTunnels(getMouseEquivalentEventName, generateMouseProxy); + + // Handling move on window to detect pointerleave/out/over + if (window.ontouchstart !== undefined) { + window.addEventListener('touchstart', function (eventObject) { + for (var i = 0; i < eventObject.changedTouches.length; ++i) { + var touchPoint = eventObject.changedTouches[i]; + previousTargets[touchPoint.identifier] = touchPoint.target; + + generateTouchEventProxyIfRegistered("pointerover", touchPoint, touchPoint.target, eventObject, true); + + //pointerenter should not be bubbled + dispatchPointerEnter(touchPoint.target, null, function (targetNode) { + generateTouchEventProxy("pointerenter", touchPoint, targetNode, eventObject, false); + }) + + generateTouchEventProxyIfRegistered("pointerdown", touchPoint, touchPoint.target, eventObject, true); + } + setTouchTimer(); + }); + + window.addEventListener('touchend', function (eventObject) { + for (var i = 0; i < eventObject.changedTouches.length; ++i) { + var touchPoint = eventObject.changedTouches[i]; + var currentTarget = previousTargets[touchPoint.identifier]; + + generateTouchEventProxyIfRegistered("pointerup", touchPoint, currentTarget, eventObject, true); + generateTouchEventProxyIfRegistered("pointerout", touchPoint, currentTarget, eventObject, true); + + //pointerleave should not be bubbled + dispatchPointerLeave(currentTarget, null, function (targetNode) { + generateTouchEventProxy("pointerleave", touchPoint, targetNode, eventObject, false); + }) + } + setTouchTimer(); + }); + + window.addEventListener('touchmove', function (eventObject) { + for (var i = 0; i < eventObject.changedTouches.length; ++i) { + var touchPoint = eventObject.changedTouches[i]; + var newTarget = document.elementFromPoint(touchPoint.clientX, touchPoint.clientY); + var currentTarget = previousTargets[touchPoint.identifier]; + + // If force preventDefault + if (currentTarget && checkPreventDefault(currentTarget) === true) + eventObject.preventDefault(); + + generateTouchEventProxyIfRegistered("pointermove", touchPoint, currentTarget, eventObject, true); + + if (currentTarget === newTarget) { + continue; // We can skip this as the pointer is effectively over the current target + } + + if (currentTarget) { + // Raise out + generateTouchEventProxyIfRegistered("pointerout", touchPoint, currentTarget, eventObject, true, newTarget); + + // Raise leave + if (!currentTarget.contains(newTarget)) { // Leave must be called if the new target is not a child of the current + dispatchPointerLeave(currentTarget, newTarget, function (targetNode) { + generateTouchEventProxy("pointerleave", touchPoint, targetNode, eventObject, false, newTarget); + }); + } + } + + if (newTarget) { + // Raise over + generateTouchEventProxyIfRegistered("pointerover", touchPoint, newTarget, eventObject, true, currentTarget); + + // Raise enter + if (!newTarget.contains(currentTarget)) { // Leave must be called if the new target is not the parent of the current + dispatchPointerEnter(newTarget, currentTarget, function (targetNode) { + generateTouchEventProxy("pointerenter", touchPoint, targetNode, eventObject, false, currentTarget); + }) + } + } + previousTargets[touchPoint.identifier] = newTarget; + } + setTouchTimer(); + }); + + window.addEventListener('touchcancel', function (eventObject) { + for (var i = 0; i < eventObject.changedTouches.length; ++i) { + var touchPoint = eventObject.changedTouches[i]; + + generateTouchEventProxyIfRegistered("pointercancel", touchPoint, previousTargets[touchPoint.identifier], eventObject, true); + } + }); + } + } + })(); + + + // Extension to navigator + if (navigator.pointerEnabled === undefined) { + + // Indicates if the browser will fire pointer events for pointing input + navigator.pointerEnabled = true; + + // IE + if (navigator.msPointerEnabled) { + navigator.maxTouchPoints = navigator.msMaxTouchPoints; + } + } + + // Handling touch-action css rule + if (document.styleSheets && document.addEventListener) { + document.addEventListener("DOMContentLoaded", function () { + if (HANDJS.doNotProcessCSS || document.body.style.touchAction !== undefined) {//Chrome is trying to implement touch-action before Pointer Events listeners + return; + } + + var globalRegex = new RegExp(".+?{.*?}", "m"); + var selectorRegex = new RegExp(".+?{", "m"); + var filterStylesheet = function (unfilteredSheet) { + var filter = globalRegex.exec(unfilteredSheet); + if (!filter) { + return; + } + var block = filter[0]; + unfilteredSheet = unfilteredSheet.replace(block, "").trim(); + var selectorText = selectorRegex.exec(block)[0].replace("{", "").trim(); + + // Checking if the user wanted to deactivate the default behavior + if (block.replace(/\s/g, "").indexOf("touch-action:none") != -1) { + var elements = document.querySelectorAll(selectorText); + + for (var elementIndex = 0; elementIndex < elements.length; elementIndex++) { + var element = elements[elementIndex]; + + if (element.style.msTouchAction !== undefined) { + element.style.msTouchAction = "none"; + } + else { + element.handjs_forcePreventDefault = true; + } + } + } + return unfilteredSheet; + } + var processStylesheet = function (unfilteredSheet) { + if (window.setImmediate) {//not blocking UI interaction for a long time + if (unfilteredSheet) + setImmediate(processStylesheet, filterStylesheet(unfilteredSheet)); + } + else { + while (unfilteredSheet) { + unfilteredSheet = filterStylesheet(unfilteredSheet); + } + } + }; // Looking for touch-action in referenced stylesheets + try { + for (var index = 0; index < document.styleSheets.length; index++) { + var sheet = document.styleSheets[index]; + + if (sheet.href == undefined) { // it is an inline style + continue; + } + + // Loading the original stylesheet + var xhr = new XMLHttpRequest(); + xhr.open("get", sheet.href); + xhr.send(); + + var unfilteredSheet = xhr.responseText.replace(/(\n|\r)/g, ""); + + processStylesheet(unfilteredSheet); + } + } catch (e) { + // Silently fail... + } + + // Looking for touch-action in inline styles + var styles = document.getElementsByTagName("style"); + for (var index = 0; index < styles.length; index++) { + var inlineSheet = styles[index]; + + var inlineUnfilteredSheet = inlineSheet.innerHTML.replace(/(\n|\r)/g, "").trim(); + + processStylesheet(inlineUnfilteredSheet); + } + }, false); + } + +})(); \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/javascript/hand-writing.js b/scorm-s-integrer-ds-equipe/javascript/hand-writing.js new file mode 100644 index 0000000..0ed2b9d --- /dev/null +++ b/scorm-s-integrer-ds-equipe/javascript/hand-writing.js @@ -0,0 +1,426 @@ + +var timeoutHW; +var actualObjHW; + +function launchHandWriting(id){ + + var obj = CObjets[id]; + + actualObjHW = id; + + var sid = ".bloc" + id +",.alterbloc" + id; + $(sid).css({ opacity : 0}); + $(sid).css("margin-top", "0px"); + + window.clearTimeout(timeoutHW); + + var i = 0; + + addHandWritingImg(); + + var xObj = parseInt(obj.getX() * zoom); + var yObj = parseInt(obj.getY() * zoom); + + var fontSizeObj = parseInt(obj.fontsize * zoom); + + var lgtObj = ($('#innerbloc' + id + " p").length); + + if(lgtObj>0){ + processHW($('#innerbloc' + id + " p"),$('#innerbloc' + id + " p").html(),'',xObj,yObj,fontSizeObj,300,id); + }else{ + processHW($('#innerbloc' + id),$('#innerbloc' + id).html(),'',xObj,yObj,fontSizeObj,300,id); + } + +} + +function processHW(selfObj,textObj,content,xObj,yObj,fontSizeObj,timeup,id) { + + if(textObj.length > 0){ + + var timeSteps = 70; + + var next = textObj.match(/(\s*(<[^>]*>)?)*(&.*?;|.?)/)[0]; + textObj = textObj.substr(next.length); + $(selfObj).html(content + next + " "); + + if(timeup==0){ + var sid = ".bloc" + id +",.alterbloc" + id; + $(sid).css({ opacity : 1}); + } + + $("#handpencil").css("margin-top","-100px"); + + var p = $("#cursorhandpencil" + id); + + var of1 = p.position(); + var of2 = $(selfObj).position(); + + var rdm = Math.floor(Math.random() * fontSizeObj) + + if(actualObjHW==id){ + $("#handpencil").animate({ + "left" : parseInt(of1.left + xObj) + "px", + "top" : parseInt( of1.top + yObj + rdm) + "px" + },20 + timeup); + }else{ + timeSteps = 30; + } + + setTimeout(function(){ + processHW(selfObj, textObj , content + next,xObj,yObj,fontSizeObj,0,id); + },timeSteps + timeup); + + }else{ + + $("#cursorhandpencil" + id).css("display","none"); + + $("#handpencil").animate({ + "top" : (yObj + 30) + "px" + }, + 300, + function(){ + + if(actualObjHW==id){ + window.clearTimeout(timeoutHW); + timeoutHW = window.setTimeout(exitWH,300); + } + + }); + + } + +} + +function exitWH(){ + + $("#handpencil").animate({ + "left" : "1500px", + "top" : "1500px" + },500); + +} + +function installHandProcess(obj){ + installHandWriting(obj); + installHandArrow(obj); +} + +function installHandWriting(obj){ + + if(obj.type=='handcircle'){ + + var h = '"; + $('#main').append(h); + } + +} + +function launchHandWritingCircle(id){ + + var obj = CObjets[id]; + + actualObjHW = id; + + var xObj = parseInt(obj.getX() + ((obj.getW()/2)*0.2)) * zoom; + var yObj = parseInt(obj.getY() + ((obj.getH()/2)*0.9)) * zoom; + + addHandWritingImg(); + + var sid = ".bloc" + id +",.alterbloc" + id; + $(sid).css({opacity : 0}); + $(sid).css("margin-top", "0px"); + + $("#handpencil").css("margin-top", "-100px"); + + $("#handpencil").animate({ + "left" : parseInt(xObj) + "px", + "top" : parseInt(yObj) + "px" + },300, + function(){ + launchHandWritingCircleS2(id); + } + ); + +} + +function launchHandWritingCircleS2(id){ + + var obj = CObjets[id]; + + var xObj = parseInt(obj.getX() + ((obj.getW()/2)*0.85)) * zoom; + var yObj = parseInt(obj.getY() + ((obj.getH()/2)*0.1)) * zoom; + + var sid = ".bloc" + id +",.alterbloc" + id; + + if(actualObjHW==id){ + + $("#handpencil").animate({ + "left" : parseInt(xObj) + "px", + "top" : parseInt(yObj) + "px" + }, + 200, + function(){ + $(sid).css({opacity:1}); + launchHandWritingCircleS3(id); + } + ); + + }else{ + $(".bloc" + id).attr("src","images/hand-circle4.png"); + } + +} + +function launchHandWritingCircleS3(id){ + + var obj = CObjets[id]; + + var xObj = parseInt(obj.getX() + ((obj.getW())*0.90)) * zoom; + var yObj = parseInt(obj.getY() + ((obj.getH()/2)*0.6)) * zoom; + + if(actualObjHW==id){ + + $("#handpencil").animate({ + "left" : parseInt(xObj) + "px", + "top" : parseInt(yObj) + "px" + }, + 200, + function(){ + $(".bloc" + id).attr("src","images/hand-circle1.png"); + launchHandWritingCircleS4(id); + } + ); + + }else{ + $(".bloc" + id).attr("src","images/hand-circle4.png"); + } + +} + +function launchHandWritingCircleS4(id){ + + var obj = CObjets[id]; + + var xObj = parseInt(obj.getX() + ((obj.getW())*0.75)) * zoom; + var yObj = parseInt(obj.getY() + ((obj.getH())*0.82)) * zoom; + + if(actualObjHW==id){ + + $("#handpencil").animate({ + "left" : parseInt(xObj) + "px", + "top" : parseInt(yObj) + "px" + }, + 200, + function(){ + $(".bloc" + id).attr("src","images/hand-circle2.png"); + launchHandWritingCircleS5(id); + } + ); + + }else{ + $(".bloc" + id).attr("src","images/hand-circle4.png"); + } + +} + +function launchHandWritingCircleS5(id){ + + var obj = CObjets[id]; + + var xObj = parseInt(obj.getX() + ((obj.getW())*0.16)) * zoom; + var yObj = parseInt(obj.getY() + ((obj.getH())*0.75)) * zoom; + + if(actualObjHW==id){ + + $("#handpencil").animate({ + "left" : parseInt(xObj) + "px", + "top" : parseInt(yObj) + "px" + }, + 200, + function(){ + $(".bloc" + id).attr("src","images/hand-circle3.png"); + launchHandWritingCircleS6(id); + } + ); + + }else{ + $(".bloc" + id).attr("src","images/hand-circle4.png"); + } + +} + +function launchHandWritingCircleS6(id){ + + var obj = CObjets[id]; + + var xObj = parseInt(obj.getX() + ((obj.getW())*0.16)) * zoom; + var yObj = parseInt(obj.getY() + ((obj.getH())*0.17)) * zoom; + + if(actualObjHW==id){ + + $("#handpencil").animate({ + "left" : parseInt(xObj) + "px", + "top" : parseInt(yObj) + "px" + }, + 200, + function(){ + + $(".bloc" + id).attr("src","images/hand-circle4.png"); + + var cyObj = parseInt((obj.getY() + (obj.getH()/2)) * zoom); + + $("#handpencil").animate({ + "top" : cyObj + "px" + }, + 300, + function(){ + + if(actualObjHW==id){ + setTimeout(function(){ + exitWHdec(id); + },500); + } + + }); + + } + ); + + }else{ + $(".bloc" + id).attr("src","images/hand-circle4.png"); + } + +} + +function exitWHdec(id){ + + if(actualObjHW==id){ + window.clearTimeout(timeoutHW); + timeoutHW = window.setTimeout(exitWH,300); + } + +} diff --git a/scorm-s-integrer-ds-equipe/javascript/jquery.anim.js b/scorm-s-integrer-ds-equipe/javascript/jquery.anim.js new file mode 100644 index 0000000..a130159 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/javascript/jquery.anim.js @@ -0,0 +1,94 @@ + +(function($){ + + $.fn.extend({ + + animateImages: function(options) { + + var timer; + + var defaults = { folder: "img" , loop: "true" }; + var options = $.extend(defaults, options); + var $this = $(this); + + var coll = parseimages(options.data); + var colldata = options.data; + + var tim = parseimages(options.time); + var colltime = options.time; + + var i_time = 0; + var i_full = coll.length - 1; + var folder = options.folder; + var i_delay = 0; + var loop = options.loop; + var isIMG =0; + + var randomnumber = Math.floor(Math.random()*10000); + var randomnumber2 = Math.floor(Math.random()*10000); + var randomnumber3 = Math.floor(Math.random()*10000); + var idL = $this.attr('id') + randomnumber + randomnumber2 + randomnumber3; + + if(coll[0].indexOf('.png')!=-1||coll[0].indexOf('.gif')!=-1||coll[0].indexOf('.jpg')!=-1){ + var imgstr = ''; + isIMG=1; + $this.append(imgstr); + } + + var animImg = function(idL,colldata,colltime,i_time,i_delay,folder,loop){ + + var coll = parseimages(colldata); + var tim = parseimages(colltime); + var i_full = coll.length - 1; + + if(document.getElementById('img' + idL )){ + + if(i_time=tim[i_time]){ + i_delay = 0; + i_time = i_time + 1; + }else{ + i_delay = i_delay +1; + } + + }else{ + if(loop=="true"||loop=="True"||loop=="1"){ + i_time = 0; + i_delay = 0; + } + } + + setTimeout(function(){animImg(idL,colldata, colltime,i_time,i_delay,folder,loop);},100); + + } + + } + + setTimeout(function(){animImg(idL,colldata, colltime,i_time,i_delay,folder,loop);},100); + + return this; + + } + + }); + + function appliqueImage(coll,folder,i){ + var fileTrouve = coll[i]; + var imageUrl = "url(\"" + folder + "\/" + fileTrouve + "\")" ; + return $.trim(imageUrl); + } + + function parseimages(data) { + var parsed = []; + parsed = data.split("|"); + return parsed; + }; + +})(jQuery); diff --git a/scorm-s-integrer-ds-equipe/javascript/jquery.hidewords.js b/scorm-s-integrer-ds-equipe/javascript/jquery.hidewords.js new file mode 100644 index 0000000..cd98090 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/javascript/jquery.hidewords.js @@ -0,0 +1,752 @@ + +var lastSelectW = ""; +var lastSelectI = 0; +var lastSelectJ = 0; + +var wordSelectI = 0; +var wordSelectJ = 0; + +var motsColl = []; +var startColl = []; +var endColl = []; +var wordIsOkColl = []; + +var NumLetterColl = []; +var modeColl = []; + +var tableMemColl = []; + +var variablesGLOB = ""; +var hidewordisok = 0; +var onMoveHideWord = false; +var onDownHideWord = false; + +(function($){ + + $.fn.extend({ + + hideWords: function(options) { + + var navigateur = ''; + + if(navigator.userAgent.indexOf("MSIE 6") != -1){ + navigateur = 'IE6'; + } + if(navigator.userAgent.indexOf("Firefox") != -1){ + navigateur = 'FIREFOX'; + } + + var defaults = { large: "25" , words: "FASTWEB" , width: "300", height: "300" }; + var options = $.extend(defaults, options); + + $(this).css('border', 'solid 1px white'); + $(this).css('margin', '1px'); + + $(this).css('margin', '0px' ); + $(this).css('padding', '0px' ); + + tableMemColl = []; + + var $this = $(this); + + var nbx = parseInt(parseInt(options.width)/(parseInt(options.large))) ; + var nby = parseInt(parseInt(options.height)/(parseInt(options.large))) ; + + var i=0; + var j=0; + + hidewordisok = 0; + + var ligne = ""; + + wordIsOkColl[0] = 0; + motsColl[0] = ""; + startColl[0] = ""; + endColl[0] = ""; + NumLetterColl[0] = 0; + modeColl[0] = 0; + + wordIsOkColl[1] = 0; + motsColl[1] = ""; + startColl[1] = ""; + endColl[1] = ""; + NumLetterColl[1] = 0; + modeColl[1] = 0; + + wordIsOkColl[2] = 0; + motsColl[2] = ""; + startColl[2] = ""; + endColl[2] = ""; + NumLetterColl[2] = 0; + modeColl[2] = 0; + + modeColl[0] = returnMode(); + modeColl[1] = returnMode(); + modeColl[2] = returnMode(); + + if(modeColl[1]==modeColl[0]){modeColl[1]=returnMode();} + if(modeColl[1]==modeColl[0]){modeColl[1]=returnMode();} + if(modeColl[1]==modeColl[0]){modeColl[1]=returnMode();} + if(modeColl[1]==modeColl[0]){modeColl[1]=returnMode();} + if(modeColl[1]==modeColl[0]){modeColl[1]=returnMode();} + if(modeColl[1]==modeColl[0]){modeColl[1]=returnMode();} + + if(modeColl[2]==modeColl[0]||modeColl[2]==modeColl[1]){modeColl[2]=returnMode();} + if(modeColl[2]==modeColl[0]||modeColl[2]==modeColl[1]){modeColl[2]=returnMode();} + if(modeColl[2]==modeColl[0]||modeColl[2]==modeColl[1]){modeColl[2]=returnMode();} + if(modeColl[2]==modeColl[0]||modeColl[2]==modeColl[1]){modeColl[2]=returnMode();} + if(modeColl[2]==modeColl[0]||modeColl[2]==modeColl[1]){modeColl[2]=returnMode();} + if(modeColl[2]==modeColl[0]||modeColl[2]==modeColl[1]){modeColl[2]=returnMode();} + + var coll = parseWords(options.words); + motsColl[0] = coll[0]; + motsColl[1] = ""; + motsColl[2] = ""; + if(parseInt(coll.length)>1){ + motsColl[1] = coll[1]; + } + if(parseInt(coll.length)>2){ + motsColl[2] = coll[2]; + } + + ligne = ''; + + for (i=0;i<=(nby-1);i++) + { + + j=0; + + ligne = ligne + ''; + + for (j=0;j<=(nbx-1);j++) + { + + var specolor = ""; + var motaff = returnLetterAff(i,j,0,nbx,nby); + if(motaff==""){ + motaff = returnLetterAff(i,j,1,nbx,nby); + } + if(motaff==""){ + motaff = returnLetterAff(i,j,2,nbx,nby); + } + + if(motaff==""){ + motaff = returnRandomLetter(); + }else{ + specolor = "background:#F5ECCE;"; + specolor = "background:white"; + } + + var IDstr = 'CELL' + j + '_' + i ; + + tableMemColl[IDstr] = true; + + var actionstr = "TraiteCase(" + j + "," + i + ");"; + + var stylenoselect = "-moz-user-select: none;-khtml-user-select: none;user-select: none;" + specolor; + + ligne = ligne + ''; + + } + + ligne = ligne + ''; + + } + + ligne = ligne + '
' + motaff.toUpperCase() + '
'; + + $(this).append(ligne); + + $("#HIDESWORDS").css('width', options.width + 'px' ); + $("#HIDESWORDS").css('height', options.height + 'px' ); + + return this; + } + + }); + + function returnRandomLetter() { + + var randomnumber=Math.floor(Math.random()*26); + if(randomnumber==0){randomnumber=1;} + var lettres = "ABCDEFTGHIJKLMNOPQRSTUVWXYZAX"; + return lettres.substr(randomnumber, 1); + + } + + function returnMode() { + + var randomnumber=Math.floor(Math.random()*8); + + if(randomnumber==0){randomnumber=1;} + if(randomnumber==8){randomnumber=7;} + + return randomnumber; + + } + + function parseWords(data){ + + var parsed = []; + + if(data.indexOf(";")!=-1){ + parsed = data.split(";"); + } + if(data.indexOf("|")!=-1){ + parsed = data.split("|"); + } + + return parsed; + + } + +})(jQuery); + + function returnLetterAff(i,j,index,nbx,nby){ + + var motaff = ""; + var mot1 = motsColl[index]; + var mode1 = modeColl[index]; + + if(mot1==""){ + return ""; + } + + //MODE 1 H + if(mode1==1){ + if(i==1&&j>1&&NumLetterColl[index]1&&j==1&&NumLetterColl[index]0&&j==i&&NumLetterColl[index]0&&j==(nbx-1)&&NumLetterColl[index]0&&NumLetterColl[index]0&&NumLetterColl[index]2&&j==(i-1)&&NumLetterColl[index]1&&NumLetterColl[index]0&&j==0&&NumLetterColl[index]wordSelectJ&&i>wordSelectI){ + var pj = j; + var pi = i; + for(pj=j;pj>wordSelectJ;pj--) { + var IDstr = "CELL" + pj + "_" + pi ; + if(tableMemColl[IDstr]){ + if(document.getElementById(IDstr).style.backgroundColor!="black"){ + document.getElementById(IDstr).style.backgroundColor = "#FE9A2E"; + } + } + pi = pi - 1; + } + } + if(j>wordSelectJ&&iwordSelectJ;pj--) { + var IDstr = "CELL" + pj + "_" + pi ; + if(tableMemColl[IDstr]){ + if(document.getElementById(IDstr).style.backgroundColor!="black"){ + document.getElementById(IDstr).style.backgroundColor = "#FE9A2E"; + } + } + pi = pi + 1; + } + } + + if(jwordSelectI){ + var pj = j; + var pi = i; + for(pj=j;pjwordSelectJ){ + var pj = j; + for(pj=j;pj>wordSelectJ;pj--) { + var IDstr = "CELL" + pj + "_" + i ; + if(tableMemColl[IDstr]){ + if(document.getElementById(IDstr).style.backgroundColor!="black"){ + document.getElementById(IDstr).style.backgroundColor = "#FE9A2E"; + } + } + } + } + + if(jwordSelectI){ + var pi = i; + for(pi=i;pi>wordSelectI;pi--){ + var IDstr = "CELL" + j + "_" + pi ; + if(tableMemColl[IDstr]){ + if(document.getElementById(IDstr).style.backgroundColor!="black"){ + document.getElementById(IDstr).style.backgroundColor = "#FE9A2E"; + } + } + } + var IDone = "CELL" + wordSelectJ + "_" + wordSelectI ; + if(tableMemColl[IDstr]){ + if(document.getElementById(IDstr).style.backgroundColor!="black"){ + document.getElementById(IDone).style.backgroundColor = "#0080FF"; + } + } + } + + if(i"; + + newInput = newInput + "
"; + newInput = newInput + "  "; + newInput = newInput + "
"; + + newInput = newInput + ""; + + newInput = newInput + ""; + + newInput = newInput + ""; + + var t = ""; + + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + t = t + "" + + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + t = t + ""; + + var nag = navigator.userAgent.toUpperCase(); + + var tbsty = "', 'g'); + val = val.replace(r1,''); + var r2 = new RegExp('', 'g'); + val = val.replace(r2,''); + + var txt = document.getElementById('chara' + id).innerHTML; + + if(val=='Exp'){ + val = "E"; + } + + if(val=='Π'){ + val = "P"; + } + + if(val!='del'){ + txt = txt + val; + } + + //Annulation + if(val=='del'){ + if(txt.length>0){ + txt = txt.substring(0,txt.length-1); + afftxt = txt; + } + } + + //Résultat + var resultTxt = txt; + var rPie = new RegExp('P', 'g'); + resultTxt = resultTxt.replace(rPie,'3.141592653589'); + try{ + xmproce = new MathProcessor; + resultTxt = xmproce.parse(resultTxt); + }catch(e){} + var res = 0; + try { + res = eval(resultTxt); + } catch(err) { + res = 0; + } + document.getElementById('result' + id).innerHTML = res; + //Résultat + + document.getElementById('chara' + id).innerHTML = txt; + + var afftxt = txt + "|" + + var rE = new RegExp('E', 'g'); + afftxt = afftxt.replace(rE,'e+'); + + var rPie = new RegExp('P', 'g'); + afftxt = afftxt.replace(rPie,'Π'); + + document.getElementById('inner' + id).innerHTML = afftxt; + +} + +//+ Jonas Raoni Soares Silva +//@ http://jsfromhell.com/classes/math-processor [v1.0] +MathProcessor = function(){ //v1.0 + var o = this; + o.o = { + "+": function(a, b){ return +a + b; }, + "-": function(a, b){ return a - b; }, + "%": function(a, b){ return a % b; }, + "/": function(a, b){ return a / b; }, + "*": function(a, b){ return a * b; }, + "^": function(a, b){ return Math.pow(a, b); }, + "~": function(a, b){ return Math.sqrt(a, b); } + }; + o.s = { "^": 3, "~": 3, "*": 2, "/": 2, "%": 1, "+": 0, "-": 0 }; + o.u = {"+": 1, "-": -1}, o.p = {"(": 1, ")": -1}; +}; + +MathProcessor.prototype.parse = function(e){ + for(var n, x, o = [], s = [x = this.RPN(e.replace(/ /g, "").split(""))]; s.length;) + for((n = s[s.length-1], --s.length); n[2]; o[o.length] = n, s[s.length] = n[3], n = n[2]); + for(; (n = o.pop()) != undefined; n[0] = this.o[n[0]](isNaN(n[2][0]) ? this.f(n[2][0]) : n[2][0], isNaN(n[3][0]) ? this.f(n[3][0]) : n[3][0])); + return +x[0]; +}; + +MathProcessor.prototype.methods = { + "div": function(a, b){ return parseInt(a / b); }, + "frac": function(a){ return a - parseInt(a); }, + "sum": function(n1, n2, n3, n){ for(var r = 0, a, l = (a = arguments).length; l; r += a[--l]); return r; }, + "medium": function(a, b){ return (a + b) / 2; } +}; + +MathProcessor.prototype.error = function(s){ + throw new Error("MathProcessor: " + (s || "Erro na expressão")); +} + +MathProcessor.prototype.RPN = function(e){ + var _, r, c = r = [, , , 0]; + if(e[0] in this.u || !e.unshift("+")) + for(; e[1] in this.u; e[0] = this.u[e.shift()] * this.u[e[0]] + 1 ? "+" : "-"); + (c[3] = [this.u[e.shift()], c, , 0])[1][0] = "*", (r = [, , c, 0])[2][1] = r; + (c[2] = this.v(e))[1] = c; + (!e.length && (r = c)) || (e[0] in this.s && ((c = r)[0] = e.shift(), !e.length && this.error())); + while(e.length){ + if(e[0] in this.u){ + for(; e[1] in this.u; e[0] = this.u[e.shift()] * this.u[e[0]] + 1 ? "+" : "-"); + (c = c[3] = ["*", c, , 0])[2] = [-1, c, , 0]; + } + (c[3] = this.v(e))[1] = c; + e[0] in this.s && (c = this.s[e[0]] > this.s[c[0]] ? + ((c[3] = (_ = c[3], c[2]))[1][2] = [e.shift(), c, _, 0])[2][1] = c[2] + : r == c ? (r = [e.shift(), , c, 0])[2][1] = r + : ((r[2] = (_ = r[2], [e.shift(), r, ,0]))[2] = _)[1] = r[2]); + } + return r; +}; + +MathProcessor.prototype.v = function(e){ + if("0123456789.".indexOf(e[0]) + 1){ + for(var i = -1, l = e.length; ++i < l && "0123456789.".indexOf(e[i]) + 1;); + return [+e.splice(0,i).join(""), , , 0]; + } + else if(e[0] == "("){ + for(var i = 0, l = e.length, j = 1; ++i < l && (e[i] in this.p && (j += this.p[e[i]]), j);); + return this.RPN(l = e.splice(0,i), l.shift(), !j && e.shift()); + } + else{ + var i = 0, c = e[0].toLowerCase(); + if((c >= "a" && c <= "z") || c == "_"){ + while(((c = e[++i].toLowerCase()) >= "a" && c <= "z") || c == "_" || (c >= 0 && c <= 9)); + if(c == "("){ + for(var l = e.length, j = 1; ++i < l && (e[i] in this.p && (j += this.p[e[i]]), j);); + return [e.splice(0,i+1).join(""), , , 0]; + } + } + } + this.error(); +} + +MathProcessor.prototype.f = function(e){ + var i = 0, n; + if(((e = e.split(""))[i] >= "a" && e[i] <= "z") || e[i] == "_"){ + while((e[++i] >= "a" && e[i] <= "z") || e[i] == "_" || (e[i] >= 0 && e[i] <= 9)); + if(e[i] == "("){ + !this.methods[n = e.splice(0, i).join("")] && this.error("Função \"" + n + "\" não encontrada"), e.shift(); + for(var a = [], i = -1, j = 1; e[++i] && (e[i] in this.p && (j += this.p[e[i]]), j);) + j == 1 && e[i] == "," && (a.push(this.parse(e.splice(0, i).join(""))), e.shift(), i = -1); + a.push(this.parse(e.splice(0,i).join(""))), !j && e.shift(); + } + return this.methods[n].apply(this, a); + } +}; diff --git a/scorm-s-integrer-ds-equipe/javascript/jquery.mousewheel.js b/scorm-s-integrer-ds-equipe/javascript/jquery.mousewheel.js new file mode 100644 index 0000000..38b6095 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/javascript/jquery.mousewheel.js @@ -0,0 +1,84 @@ +/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net) + * Licensed under the MIT License (LICENSE.txt). + * + * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers. + * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix. + * Thanks to: Seamus Leahy for adding deltaX and deltaY + * + * Version: 3.0.6 + * + * Requires: 1.2.2+ + */ + +(function($) { + +var types = ['DOMMouseScroll', 'mousewheel']; + +if ($.event.fixHooks) { + for ( var i=types.length; i; ) { + $.event.fixHooks[ types[--i] ] = $.event.mouseHooks; + } +} + +$.event.special.mousewheel = { + setup: function() { + if ( this.addEventListener ) { + for ( var i=types.length; i; ) { + this.addEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = handler; + } + }, + + teardown: function() { + if ( this.removeEventListener ) { + for ( var i=types.length; i; ) { + this.removeEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = null; + } + } +}; + +$.fn.extend({ + mousewheel: function(fn) { + return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel"); + }, + + unmousewheel: function(fn) { + return this.unbind("mousewheel", fn); + } +}); + + +function handler(event) { + var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0; + event = $.event.fix(orgEvent); + event.type = "mousewheel"; + + // Old school scrollwheel delta + if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta/120; } + if ( orgEvent.detail ) { delta = -orgEvent.detail/3; } + + // New school multidimensional scroll (touchpads) deltas + deltaY = delta; + + // Gecko + if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) { + deltaY = 0; + deltaX = -1*delta; + } + + // Webkit + if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; } + if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; } + + // Add event and delta to the front of the arguments + args.unshift(event, delta, deltaX, deltaY); + + return ($.event.dispatch || $.event.handle).apply(this, args); +} + +})(jQuery); diff --git a/scorm-s-integrer-ds-equipe/javascript/jquery.rotate.js b/scorm-s-integrer-ds-equipe/javascript/jquery.rotate.js new file mode 100644 index 0000000..512a99f --- /dev/null +++ b/scorm-s-integrer-ds-equipe/javascript/jquery.rotate.js @@ -0,0 +1,22 @@ +// VERSION: 2.3 LAST UPDATE: 11.07.2013 +/* + * Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php + * + * Made by Wilq32, wilq32@gmail.com, Wroclaw, Poland, 01.2009 + * Website: http://code.google.com/p/jqueryrotate/ + */ +(function(k){for(var d,f,l=document.getElementsByTagName("head")[0].style,h=["transformProperty","WebkitTransform","OTransform","msTransform","MozTransform"],g=0;gthis._parameters.duration;if(b&&!this._parameters.animatedGif)clearTimeout(this._timer);else{if(this._canvas||this._vimage||this._img)a=this._parameters.easing(0,a-this._animateStartTime,this._animateStartAngle,this._parameters.animateTo-this._animateStartAngle,this._parameters.duration), +this._rotate(~~(10*a)/10);this._parameters.step&&this._parameters.step(this._angle);var c=this;this._timer=setTimeout(function(){c._animate.call(c)},10)}this._parameters.callback&&b&&(this._angle=this._parameters.animateTo,this._rotate(this._angle),this._parameters.callback.call(this._rootObj))},_rotate:function(){var a=Math.PI/180;return IE?function(a){this._angle=a;this._container.style.rotation=a%360+"deg";this._vimage.style.top=-(this._rotationCenterY-this._imgHeight/2)+"px";this._vimage.style.left= +-(this._rotationCenterX-this._imgWidth/2)+"px";this._container.style.top=this._rotationCenterY-this._imgHeight/2+"px";this._container.style.left=this._rotationCenterX-this._imgWidth/2+"px"}:d?function(a){this._angle=a;this._img.style[d]="rotate("+a%360+"deg)";this._img.style[f]=this._parameters.center.join(" ")}:function(b){this._angle=b;b=b%360*a;this._canvas.width=this._width;this._canvas.height=this._height;this._cnv.translate(this._imgWidth*this._aspectW,this._imgHeight*this._aspectH);this._cnv.translate(this._rotationCenterX, +this._rotationCenterY);this._cnv.rotate(b);this._cnv.translate(-this._rotationCenterX,-this._rotationCenterY);this._cnv.scale(this._aspectW,this._aspectH);this._cnv.drawImage(this._img,0,0)}}()};IE&&(Wilq32.PhotoEffect.prototype.createVMLNode=function(){document.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)");try{return!document.namespaces.rvml&&document.namespaces.add("rvml","urn:schemas-microsoft-com:vml"),function(a){return document.createElement("')}}catch(a){return function(a){return document.createElement("<"+ +a+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}}())})(jQuery); diff --git a/scorm-s-integrer-ds-equipe/javascript/jquery.texte.lpl.js b/scorm-s-integrer-ds-equipe/javascript/jquery.texte.lpl.js new file mode 100644 index 0000000..f6caa1b --- /dev/null +++ b/scorm-s-integrer-ds-equipe/javascript/jquery.texte.lpl.js @@ -0,0 +1,32 @@ + +$.fn.textlpl = function(opt,callback) { + + var i=0; + + var typeone = function(self, text, content) { + + if (text.length > 0) { + i = i + 1; + var next = text.match(/(\s*(<[^>]*>)?)*(&.*?;|.?)/)[0]; + text = text.substr(next.length); + var next2 = text.match(/(\s*(<[^>]*>)?)*(&.*?;|.?)/)[0]; + text = text.substr(next2.length); + var next3 = text.match(/(\s*(<[^>]*>)?)*(&.*?;|.?)/)[0]; + text = text.substr(next3.length); + $(self).html(content+next+next2+next3); + setTimeout(function(){ + typeone(self, text, content + next + next2 + next3); + },120); + if(text.length==0) if (callback!=null) callback(); + } + + } + + this.each(function() { + opt = opt || { 'delay': 120}; + typeone(this, $(this).html(), ''); + }); + + return this; + +} diff --git a/scorm-s-integrer-ds-equipe/javascript/jquery.ts.min.js b/scorm-s-integrer-ds-equipe/javascript/jquery.ts.min.js new file mode 100644 index 0000000..98786a7 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/javascript/jquery.ts.min.js @@ -0,0 +1 @@ +(function(a){function b(b,c){function w(a){if(!(g.ratio>=1)){o.now=Math.min(i[c.axis]-j[c.axis],Math.max(0,o.start+((k?a.pageX:a.pageY)-p.start)));n=o.now*h.ratio;g.obj.css(l,-n);j.obj.css(l,o.now)}return false}function v(b){a(document).unbind("mousemove",w);a(document).unbind("mouseup",v);j.obj.unbind("mouseup",v);document.ontouchmove=j.obj[0].ontouchend=document.ontouchend=null;return false}function u(b){if(!(g.ratio>=1)){var b=b||window.event;var d=b.wheelDelta?b.wheelDelta/120:-b.detail/3;n-=d*c.wheel;n=Math.min(g[c.axis]-f[c.axis],Math.max(0,n));j.obj.css(l,n/h.ratio);g.obj.css(l,-n);b=a.event.fix(b);b.preventDefault()}}function t(b){p.start=k?b.pageX:b.pageY;var c=parseInt(j.obj.css(l));o.start=c=="auto"?0:c;a(document).bind("mousemove",w);document.ontouchmove=function(b){a(document).unbind("mousemove");w(b.touches[0])};a(document).bind("mouseup",v);j.obj.bind("mouseup",v);j.obj[0].ontouchend=document.ontouchend=function(b){a(document).unbind("mouseup");j.obj.unbind("mouseup");v(b.touches[0])};return false}function s(){j.obj.bind("mousedown",t);j.obj[0].ontouchstart=function(a){a.preventDefault();j.obj.unbind("mousedown");t(a.touches[0]);return false};i.obj.bind("mouseup",w);if(c.scroll&&this.addEventListener){e[0].addEventListener("DOMMouseScroll",u,false);e[0].addEventListener("mousewheel",u,false)}else if(c.scroll){e[0].onmousewheel=u}}function r(){j.obj.css(l,n/h.ratio);g.obj.css(l,-n);p["start"]=j.obj.offset()[l];var a=m.toLowerCase();h.obj.css(a,i[c.axis]);i.obj.css(a,i[c.axis]);j.obj.css(a,j[c.axis])}function q(){d.update();s();return d}var d=this;var e=b;var f={obj:a(".viewport",b)};var g={obj:a(".overview",b)};var h={obj:a(".scrollbar",b)};var i={obj:a(".track",h.obj)};var j={obj:a(".thumb",h.obj)};var k=c.axis=="x",l=k?"left":"top",m=k?"Width":"Height";var n,o={start:0,now:0},p={};this.update=function(a){f[c.axis]=f.obj[0]["offset"+m];g[c.axis]=g.obj[0]["scroll"+m];g.ratio=f[c.axis]/g[c.axis];h.obj.toggleClass("disable",g.ratio>=1);i[c.axis]=c.size=="auto"?f[c.axis]:c.size;j[c.axis]=Math.min(i[c.axis],Math.max(0,c.sizethumb=="auto"?i[c.axis]*g.ratio:c.sizethumb));h.ratio=c.sizethumb=="auto"?g[c.axis]/i[c.axis]:(g[c.axis]-f[c.axis])/(i[c.axis]-j[c.axis]);n=a=="relative"&&g.ratio<=1?Math.min(g[c.axis]-f[c.axis],Math.max(0,n)):0;n=a=="bottom"&&g.ratio<=1?g[c.axis]-f[c.axis]:isNaN(parseInt(a))?n:parseInt(a);r()};return q()}a.tiny=a.tiny||{};a.tiny.scrollbar={options:{axis:"y",wheel:40,scroll:true,size:"auto",sizethumb:"auto"}};a.fn.tinyscrollbar=function(c){var c=a.extend({},a.tiny.scrollbar.options,c);this.each(function(){a(this).data("tsb",new b(a(this),c))});return this};a.fn.tinyscrollbar_update=function(b){return a(this).data("tsb").update(b)};})(jQuery) \ No newline at end of file diff --git a/scorm-s-integrer-ds-equipe/javascript/jquery1.8.2.min.js b/scorm-s-integrer-ds-equipe/javascript/jquery1.8.2.min.js new file mode 100644 index 0000000..ab28a24 --- /dev/null +++ b/scorm-s-integrer-ds-equipe/javascript/jquery1.8.2.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h; +if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/\s*$/g,rb={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:k.htmlSerialize?[0,"",""]:[1,"X
","
"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?""!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("'; +h=h + ''; +Ecran.innerHTML=Ecran.innerHTML + h; +} +if(obj.type=='contactqytouch'){ +h=''; +Ecran.innerHTML=Ecran.innerHTML + h; +} +} +var eventCatchScript=false;var fctMamSlideObject="";function installfx(obj,act){ +var h='';var Ecran=document.getElementById("main");if(obj.type=='scriptEvents'){ +eventCatchScript=false; +h='
'; +h += '
'; +$("#main").append(h); +} +if(obj.type=='material-panel'){ +h ='
'; +h += '
'; +$("#main").append(h); +} +if(obj.type=='material-button'){ +var col=obj.selectcolor;h='
'; +h=h + '
'; +h=h + '
' + obj.text + '
'; +h=h + '
' +Ecran.innerHTML=Ecran.innerHTML + h; +} +if(obj.type=='btnimage'){ +h=''; +Ecran.innerHTML=Ecran.innerHTML + h; +} +if(obj.type=='btnimagelegend'){ +var animlegend=false;if(obj.option==1){ +animlegend=true; +} +h=''; +h=h + '
'; +h=h + '
'; +h=h + obj.text; +h=h + '
'; +h=h + '
'; +h=h + obj.text; +h=h + '
'; +h=h + '
'; +Ecran.innerHTML=Ecran.innerHTML + h; +} +if(obj.type=='galerie'){ +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + ''; +h=h + '
   
 '; +h=h + '
'; +h=h + ''; +h=h + ''; +h=h + '
'; +h=h + '
 
 '; +h=h + ''; +h=h + '
1
'; +h=h + '

...

'; +h=h + ''; +h=h + '
 
'; +Ecran.innerHTML=Ecran.innerHTML + h; +} +if(obj.type=='playersound'){ +act=' onclick="playSoundByPlayer(\'' + obj.data + '\',\'' + obj.contenu3 + '\',\'' + obj.id + '\');" '; +h=''; +Ecran.innerHTML=Ecran.innerHTML + h; +} +} +function installFlipCard(obj){ +var h='
'; +h += '
'; +h += sideFlipRecto(obj); +h += sideFlipVerso(obj); +h += '
'; +h += '
'; +$("#main").append(h); +} +function sideFlipRecto(obj){ +var h='';if(obj.contenu3==1){ +h += '
'; +h += '
'; +} +if(obj.contenu3==2){ +h += '
'; +h += ''; +h += ''; +h += '
'; +h += obj.text; +h += '
'; +h += '
'; +} +if(obj.contenu3==3){ +h += '
'; +h += '
'; +} +return h; +} +function sideFlipVerso(obj){ +var h='';if(obj.contenu4==1){ +h += '
'; +h += ''; +h += ''; +h += '
'; +h += obj.contenu2; +h += '
'; +h += '
'; +} +if(obj.contenu4==2){ +h += '
'; +h += '
'; +} +return h; +} +function flipcardHackIE(i){ +if(isMsie()){ +var hie=$('.flipcardback' + i).attr('hie'); +$('.bloc'+ i).css('opacity','1'); +$('.bloc'+ i + ' .flipcard-inner').css('opacity','0.6'); +if(hie==0){ +$('.flipcardback' + i).attr('hie',1); +setTimeout(function(){ +sdn('.flipcardfront'+ i); +sdb('.flipcardback' + i); +}, 350); +setTimeout(function(){ +$('.flipcardback' + i).css('-ms-transform','rotateY(0deg)').css('transform','rotateY(0deg)'); +$('.flipcardback' + i).css('-ms-transform','scaleX(-1)').css('transform','scaleX(-1)'); +},350); +setTimeout(function(){ +$('.bloc'+ i).css('opacity','1'); +$('.bloc'+ i + ' .flipcard-inner').css('opacity','1'); +},700); +}else{ +$('.flipcardback' + i).attr('hie',0); +setTimeout(function(){ +sdb('.flipcardfront'+ i); +sdn('.flipcardback' + i); +}, 350); +setTimeout(function(){ +$('.flipcardback' + i).css('-ms-transform','rotateY(180deg)').css('transform','rotateY(180deg)'); +$('.flipcardback' + i).css('-ms-transform','scaleX(1)').css('transform','scaleX(1)'); +},350); +setTimeout(function(){ +$('.bloc'+ i).css('opacity','1'); +$('.bloc'+ i + ' .flipcard-inner').css('opacity','1'); +},700); +} +} +} +function zoomfx(obj,e_x,e_y,wb,hb){ +if(obj.type=='pola'){ +$(".cadrepola"+ obj.id).css("width", wb + "px").css("height",hb + "px"); +$(".legendbox").css("font-size",parseInt(obj.fontsize * zoom) + 'px'); +} +if(obj.type=='material-flipcard'){ +$(".flipcardfront"+ obj.id).css("width", wb + "px").css("height",hb + "px"); +$(".flipcardback"+ obj.id).css("width", wb + "px").css("height",hb + "px"); +$(".flipcardtable"+ obj.id).css("width", wb + "px").css("height",hb + "px"); +} +if(obj.type=='infosbulle'){ +var fts=parseInt(obj.fontsize * zoom);$("#innertextbulle" + obj.id).css("font-size",fts + "px"); +zoomMiniBulle(obj,e_x,e_y,wb,hb); +zoomMiniBulle(obj,e_x,e_y,wb,hb); +zoomMiniBulle(obj,e_x,e_y,wb,hb); +zoomMiniBulle(obj,e_x,e_y,wb,hb); +} +if(obj.type=='galerie'){ +placeImg(obj); +$(".galerie" + obj.id).css("height", parseInt(hb * 0.85) + 'px'); +} +if(obj.type=='slide'){ +placeImgSlide(obj); +} +} +function execEventScript1Second(id,lpage,time){ +if(lastPage0==lpage){ +var obj=CObjets[id];eval(obj.text); +if(time>0){ +setTimeout('execEventScript1Second('+id+','+lpage+','+time+');',time); +} +} +} +function execEventScriptCatch(id,lpage){ +if(lastPage0==lpage){ +if(eventCatchScript){ +var obj=CObjets[id];eval(obj.text); +eventCatchScript=false; +} +setTimeout('execEventScriptCatch('+id+','+lpage+');',750); +} +} +function execEventScriptCatchOne(id,lpage){ +if(lastPage0==lpage){ +var obj=CObjets[id];eval(obj.text); +} +} +var timerPlayer;function playSoundByPlayer(data1,data2,i){ +i=parseInt(i); +StopAllSounds(); +for(var j=0; j < CObjets_count; j++){ +if(CObjets[j].id!=i){ +if(CObjets[j].type=='playersound'){ +CObjets[j].border=''; +$('.bloc' + CObjets[j].id).attr('src', CObjets[j].text); +} +} +} +if(CObjets[i].border!='1'){ +$('.bloc' + CObjets[i].id ).attr('src', CObjets[i].contenu2); +CObjets[i].border='1'; +playSoundOne(data1,data2); +}else{ +CObjets[i].border=''; +$('.bloc' + CObjets[i].id ).attr('src', CObjets[i].text); +clearTimeout(timerPlayer); +} +} +function resetSound(i){ +clearTimeout(timerPlayer); +var act='$(\'.bloc' + CObjets[i].id + '\').attr(\'src\',"' + CObjets[i].text + '"); '; +timerPlayer=setTimeout(act, 5000); +} +function upBI(i){ +var wb=parseInt(CObjets[i].getW() * zoom);var hb=parseInt(CObjets[i].getH() * zoom);var wb_max=parseInt(wb * 1.2);var hb_max=parseInt(hb * 1.2);var dec_x=parseInt((wb_max - wb) / 2 );var dec_y=parseInt((hb_max - hb) / 2 );$('.bloc' + i).stop().animate({width :wb_max + 'px',height :hb_max + 'px',marginLeft : '-' + dec_x + 'px',marginTop : '-' + dec_y + 'px' } , 500); +} +function doBI(i){ +var wb=parseInt(CObjets[i].getW() * zoom);var hb=parseInt(CObjets[i].getH() * zoom);$('.bloc' + i).stop().animate({width : wb + 'px',height : hb + 'px',marginLeft : '0px',marginTop : '0px' } , 500); +} +function upBL(i){ +$('.btnlegend' + i).stop().animate({marginBottom :'0px'} , 500); +} +function doBL(i){ +$('.btnlegend' + i).stop().animate({marginBottom :'-70px'} , 500); +} +function zoomMiniBulle(obj,e_x,e_y,wb,hb){ +var lw=obj.objx;var lh=obj.objy;if(document.getElementById ("textbulle" + obj.id)){ +var ctrh=document.getElementById ("textbulle" + obj.id).offsetHeight; +if(ctrh>lh-(17 * zoom)&&lw<250){ +if(ctrh>lh-(17 * zoom)){ +lh=lh + 20; +}else{ +obj.border=1; +} +var rati=105/96;lw= parseInt(lh * rati); +obj.objx=lw; +obj.objy=lh; +}else{ +obj.border=1; +} +var LittleDecY=(10 * zoom);var leftBul=parseInt(parseInt(e_x -( (lw * zoom)/2 ) )+(wb/2)); +if(obj.getX()>840){ +leftBul=parseInt(parseInt(e_x -(lw * zoom) )+ parseInt(wb/3) ); +} +var topBull =parseInt(e_y -(lh + LittleDecY)); +$('#textbulle' + obj.id).css("left", (leftBul + 5) + 'px'); +$('#textbulle' + obj.id).css("top", (topBull + 5) + 'px'); +$("#textbulle" + obj.id).css("width", parseInt(parseInt(lw - 10) * zoom) + 'px'); +$("#textbulle" + obj.id).css("height", parseInt(lh - (17 * zoom)) + 'px'); +$("#bulle" + obj.id).css("left", leftBul + 'px'); +$("#bulle" + obj.id).css("top", topBull + 'px'); +$("#bulle" + obj.id).css("width", parseInt(lw * zoom) + 'px'); +var ctrhy=document.getElementById ("textbulle" + obj.id).offsetHeight; +$("#bulle" + obj.id).css("height", parseInt(ctrhy + (17 * zoom)) + 'px'); +} +} +function viewbulle(objid){ +$("#bulle" + objid + ',#textbulle' + objid).stop().fadeIn(100); +} +function viewbulleoff(i){ +if(typeof CObjets[i] === "undefined"){ +return false; +} +if(typeof CObjets[i].border === "undefined"){ +return false; +} +if(CObjets[i].border==1){ +$("#bulle" + i + ',#textbulle' + i).css("display","none"); +} +} +function placeImg(obj){ +var actual=parseInt(document.getElementById("numcont" + obj.id).innerHTML) - 1; +var parsed=[];parsed=obj.src.split(";"); +var legendcoll=[];legendcoll=obj.text.split(";"); +if(parsed[actual]!=''){ +var srcimg="images/" + parsed[actual]; +$('#imgcont' + obj.id ).attr('src', srcimg); +} +var iwe=parseInt(parseInt(obj.getW() * 0.9) * zoom);var ihe=parseInt(parseInt(obj.getH() * 0.8) * zoom);$('#legend' + obj.id ).css("width", parseInt(parseInt(parseInt(obj.getW() * 0.80) * zoom) - 60) + "px"); +document.getElementById("legend" + obj.id ).innerHTML=legendcoll[actual]; +$('#imgcont' + obj.id ).stop().css("opacity", "0"); +document.getElementById("imgwork").src=srcimg; +$('#imgcont' + obj.id ).stop().animate({ +opacity: 0.1}, 500, function(){ +var itw= document.getElementById("imgwork").offsetWidth;var ith= document.getElementById("imgwork").offsetHeight;var ratio=itw/ith;if(ith>itw){ +ratio=itw/ith; +iw=parseInt(ihe * ratio); +ih=ihe; +} +if(itw>ith){ +ratio=itw/ith; +ih=parseInt(iwe / ratio); +iw=iwe; +} +if(ih>ihe){ +ratio=itw/ith; +iw=parseInt(ihe * ratio); +ih=ihe; +} +if(iw>iwe){ +ratio=itw/ith; +ih=parseInt(iwe / ratio); +iw=iwe; +} +$("#imgcont" + obj.id).css("left" ,'50%').css("top" ,'50%'); +$("#imgcont" + obj.id).css("width" ,iw + 'px').css("height",ih + 'px'); +$("#imgcont" + obj.id).css("margin-left" , '-' + parseInt(iw/2) + 'px'); +$("#imgcont" + obj.id).css("margin-top" , '-' + parseInt(ih/2) + 'px'); +$('#imgcont' + obj.id ).stop().animate({opacity: 1}); +}); +} +function MoveNextGalerie(i){ +var actual=parseInt(document.getElementById("numcont" + i).innerHTML); +var parsed=[];parsed=CObjets[i].src.split(";"); +if(actual==parsed.length -1){ +actual=0; +} +document.getElementById("numcont" + i).innerHTML=actual + 1; +placeImg(CObjets[i]); +placeImg(CObjets[i]); +} +function MovePrevGalerie(i){ +var actual=parseInt(document.getElementById("numcont" + i).innerHTML); +var parsed=[];parsed=CObjets[i].src.split(";"); +if(actual==1){ +actual=parsed.length; +} +document.getElementById("numcont" + i).innerHTML=actual - 1; +placeImg(CObjets[i]); +placeImg(CObjets[i]); +} +function placeImgSlide(obj){ +var actual=parseInt(document.getElementById("numcont" + obj.id).innerHTML); +var parsed=[];parsed=obj.src.split(";"); +var legendcoll=[];legendcoll=obj.text.split(";"); +if(parsed[actual]!=''){ +var srcimg="images/" + parsed[actual]; +var srcimg2="images/" + parsed[actual + 1]; +$('#slideimg1' + obj.id ).attr('src', srcimg); +$('#slideimg2' + obj.id ).attr('src', srcimg2); +} +pointSlide(obj.id); +var iwe=parseInt(parseInt(obj.getW()) * zoom);var ihe=parseInt(parseInt(obj.getH()) * zoom);var ratioH=obj.getH()/200;var vH=parseInt(71*ratioH);var ratioW=obj.getW()/400;var vW=parseInt(61*ratioW);$("#ombreslide" + obj.id ).css("position",'absolute'); +$("#ombreslide" + obj.id ).css("top",parseInt(parseInt(obj.getY() - parseInt(vH/2)) * zoom) + 'px'); +$("#ombreslide" + obj.id ).css("height",parseInt(parseInt(obj.getH() + vH) * zoom) + 'px'); +$("#ombreslide" + obj.id ).css("left",parseInt(parseInt(obj.getX() -parseInt(vW/2)) * zoom) + 'px'); +$("#ombreslide" + obj.id ).css("width" ,parseInt(parseInt(obj.getW() + vW) * zoom) + 'px'); +$("#slidecontainGlobal" + obj.id ).css("width" ,parseInt(iwe) + 'px') +$("#slidecontainGlobal" + obj.id ).css("width" ,parseInt(iwe) + 'px').css("height",ihe + 'px'); +$("#slidecontainGlobal" + obj.id ).css("overflow" ,'hidden'); +$("#slidecontain" + obj.id ).css("width" ,parseInt(iwe * 3) + 'px'); +$("#slidecontain" + obj.id ).css("height",parseInt(ihe + 5) + 'px'); +$("#slidecontain" + obj.id ).css("overflow" ,'hidden'); +var idIm="#slidebl" + obj.id + "," + "#slideb2" + obj.id; +$(idIm).css("top",parseInt(parseInt(obj.getY() * zoom) + parseInt(ihe/2) - 28) + 'px'); +var ec=0 ;var hauteurF=parseInt(720 * zoom);if(hauteurF<700){ec=7;} +if(hauteurF<450){ec=15;} +$("#slidebl" + obj.id ).css("left" ,parseInt(obj.getX() * zoom) - (36 - ec) + 'px'); +$("#slideb2" + obj.id ).css("left" ,parseInt(parseInt(obj.getX() + obj.getW()) * zoom) - (3 + ec) + 'px'); +var idS="#slideimg1" + obj.id + "," + "#slideimg2" + obj.id; +$(idS).css("width" ,iwe + 'px').css("height",ihe + 'px').css("float",'left'); +} +function transitionSlide(id,incr,prop){ +if(document.getElementById("numcont" + id)){ +var obj=CObjets[id];var actual=parseInt(document.getElementById("numcont" + id).innerHTML); +var parsed=[];parsed=obj.src.split(";"); +var iwe=parseInt(parseInt(obj.getW()) * zoom);actual=actual + incr; +if(parsed[actual]==''){actual=0;} +document.getElementById("numcont" + id).innerHTML=actual; +pointSlide(obj.id); +$('#slideimg1' + id ).stop().animate({marginLeft: "-" + iwe + "px"}, 1000, +function(){ +if(parsed[actual]!=''){ +var srcimg="images/" + parsed[actual]; +var srcimg2="";if(parsed[actual+ 1]!=''){ +srcimg2="images/" + parsed[actual + 1]; +}else{ +srcimg2="images/" + parsed[0]; +} +$('#slideimg1' + obj.id ).attr('src', srcimg); +$('#slideimg1' + obj.id ).css("margin-left","0px"); +$('#slideimg2' + obj.id ).attr('src', srcimg2); +} +setTimeout('transitionSlide(' + obj.id + ',' + incr + ')', 4000); +} +); +} +} +function transitionRapid(id,incr){ +var obj=CObjets[id];var actual=parseInt(document.getElementById("numcont" + id).innerHTML); +var parsed=[];parsed=obj.src.split(";"); +var iwe=parseInt(parseInt(obj.getW()) * zoom);actual=parseInt(actual + parseInt(incr)); +if(parsed[actual]==''){actual=0;} +if(parseInt(actual)==-1){actual=parseInt(parsed.length-2);} +if(parsed[actual]==''){actual=0;} +document.getElementById("numcont" + id).innerHTML=actual; +pointSlide(obj.id); +if(parsed[actual]!=''){ +var srcimg="images/" + parsed[actual]; +var srcimg2="";if(parsed[actual+ 1]!=''){ +srcimg2="images/" + parsed[actual + 1]; +}else{ +srcimg2="images/" + parsed[0]; +} +$('#slideimg1' + obj.id ).attr('src', srcimg); +$('#slideimg1' + obj.id ).css("margin-left","0px"); +$('#slideimg2' + obj.id ).attr('src', srcimg2); +} +} +function pointSlide(id){ +if(document.getElementById("numcont" + id)){ +var obj=CObjets[id];var actual=parseInt(document.getElementById("numcont" + id).innerHTML); +var parsed=[];parsed=obj.src.split(";"); +if(document.getElementById("indexslide" + obj.id)){ +htmlist=""; +for(var i=0; i'; +}else{ +htmlist=htmlist + ''; +} +} +} +document.getElementById("indexslide" + obj.id).innerHTML=htmlist; +} +} +} +var objectifherox=0;var objectifheroy=0;var haveHero=false;var loadaction=0;var angleHero=0;var nextGameTick=80;var FirstGameInit=true;function exitAllGame(){ +$("#game").empty(); +$('#main').empty(); +setTimeout('$("#game").css("display","none");', 500); +window.gameInstance.finish(); +} +function installgame(obj){ +var h='';var act='';var Ecran=document.getElementById("main");if(obj.type=='3dplane'&&obj.objx!=1){ +obj.objx=1; +if(FirstGameInit){ +$('#game').css('background','white'); +setTimeout('$("#main").append("
");$("body").focus();', 200); +setTimeout('$("#main").append("
");$("#game").css("display","block");$("body").focus();', 1200); +setTimeout('gameLaunch' + obj.data + '();', 1500); +FirstGameInit=false; +}else{ +$("#game").css("display","block").css('background','white'); +setTimeout('$("#main").append("
");$("body").focus();', 200); +setTimeout('$("#main").append("
");$("#game").css("display","block");$("body").focus();', 1000); +setTimeout('gameLaunch' + obj.data + '();', 1500); +} +$('body').focus(); +} +if(obj.type=='gamehero'){ +if(haveHeroMask){ +if(objectHeroMask.idscript==obj.idscript){ +obj.text=objectHeroMask.text; +obj.contenu3=objectHeroMask.contenu3;//h +obj.contenu2=objectHeroMask.contenu2;//b +obj.src=objectHeroMask.contenu5;//g +obj.data=objectHeroMask.contenu4;//d +} +} +h=''; +} +if(obj.type=='gamelife'){ +if(LUDIlife==0||LUDIlife<1){ +LUDIlife=parseInt(obj.data); +} +LUDIlifeheight= parseInt(obj.getH()); +LUDIlifegameover=parseInt(obj.src); +h += '
'; +LUDIlifeTotal=parseInt(obj.data); +var srcImg=obj.text;if(obj.contenu2!=""){ +srcImg='images/' + obj.contenu2; +} +for(var i=0;iex&&hxey&&hyex&&hxey&&hyex&&hxey&&hyVobj.getX()){ +if(imgsrc.indexOf(Vobj.data)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.data); +} +} +if(objectifherox<=Vobj.getX()){ +if(imgsrc.indexOf(Vobj.src)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.src); +} +} +if(Vobj.option==0){ +if(angleDegrees>65&&angleDegrees<115){ +if(imgsrc.indexOf(Vobj.contenu2)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.contenu2); +} +} +if(angleDegrees<-45&&angleDegrees>-135){ +if(imgsrc.indexOf(Vobj.contenu3)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.contenu3); +} +} +} +nextGameTick=(new Date).getTime(); +moveHero(idaction); +} +} +if(haveCanon){ +for(var i=0; i < CObjets_count; i++){ +if(CObjets[i].type=='physicscanon'){ +var Vobj= CObjets[i];activeBoule(Vobj); +} +} +} +var ex=parseInt(parseInt(xcoord - Ecran.offsetLeft) /zoom);var ey=parseInt(parseInt(ycoord - Ecran.offsetTop ) /zoom);if(!onObjectClickCancel(ex,ey)){ +activeObjectAnimClic(); +} +} +function onObjectClickCancel(ctrx,ctry){ +for(var i=0; i < CObjets_count; i++){ +var ob=CObjets[i];if(ob.type=='videohtml'||ob.type=='audiohtml'||ob.type=='videodistante'){ +var r=0;if(ctrx>parseInt(ob.getX())){ +r=r + 1 ; +} +if(ctry>parseInt(ob.getY())){ +r=r + 1 ; +} +if(ctrx5){ +angleHero=getAngle(Vobj.getX(),Vobj.getY(),objectifherox,Vobj.getY()); +}else{ +angleHero=getAngle(Vobj.getX(),Vobj.getY(),objectifherox,objectifheroy); +} +}else{ +angleHero=getAngle(Vobj.getX(),Vobj.getY(),objectifherox,objectifheroy); +} +} +catch(err) +{} +var interval=(new Date).getTime() - nextGameTick;nextGameTick=(new Date).getTime(); +var dist=distancepyta(objectifherox,objectifheroy,Vobj.getX(),Vobj.getY());var deplace=parseInt(parseInt(Vobj.border ) * zoom)* (interval / 80);if(dist>5){ +var evolx=parseFloat(Vobj.getX()) + ((deplace) * Math.cos(angleHero)); +var evoly=parseFloat(Vobj.getY());var oneColl=false;if(haveCollideObjects(evolx,evoly)==true){ +evolx=parseFloat(Vobj.getX()); +evoly=parseFloat(Vobj.getY()) + ((deplace) * Math.sin(angleHero)); +}else{ +evoly=parseFloat(Vobj.getY()) + ((deplace) * Math.sin(angleHero)); +} +if(haveCollideObjects(evolx,evoly)==false){ +Vobj.setX(evolx); +Vobj.setY(evoly); +}else{ +objectifherox=Vobj.getX(); +objectifheroy=Vobj.getY(); +} +zoomGame(Vobj); +displayCollideObjects(evolx,evoly); +setTimeout('moveHero("' + idact + '")', 80); +var angleDegrees=angleHero * (180 /Math.PI) ;var imgsrc=($('.hero' + Vobj.id ).attr("src")); +if(Vobj.field1==0){ +if(objectifherox>Vobj.getX()){ +if(imgsrc.indexOf(Vobj.data)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.data); +} +} +if(objectifherox<=Vobj.getX()){ +if(imgsrc.indexOf(Vobj.src)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.src); +} +} +if(Vobj.option==0){ +if(angleDegrees>65&&angleDegrees<115){ +if(imgsrc.indexOf(Vobj.contenu2)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.contenu3); +} +} +if(angleDegrees<-45&&angleDegrees>-135){ +if(imgsrc.indexOf(Vobj.contenu3)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.contenu2); +} +} +} +}else{ +if(angleDegrees<65&&angleDegrees>35){ +if(imgsrc.indexOf(Vobj.data)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.data); +} +} +if(angleDegrees<-25&&angleDegrees>-65){ +if(imgsrc.indexOf(Vobj.contenu2)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.contenu2); +} +} +if(angleDegrees<-125&&angleDegrees>-155){ +if(imgsrc.indexOf(Vobj.src)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.src); +} +} +if(angleDegrees>105&&angleDegrees<165){ +if(imgsrc.indexOf(Vobj.contenu3)==-1){ +$(".hero" + Vobj.id).attr('src',Vobj.contenu3); +} +} +} +}else{ +$(".hero" + Vobj.id).attr('src',Vobj.text); +} +} +} +} +function trouveHero(){ +for(var i=0; i < CObjets_count; i++){ +if(CObjets[i].type=='gamehero'){ +return CObjets[i]; +} +} +} +function getAngle(p1x,p1y,p2x,p2y){ +var delta_x=p2x - p1x;var delta_y=p2y - p1y;var theta_radians= Math.atan2(delta_y, delta_x);return theta_radians; +} +function distancepyta(x1, y1, x2, y2){ +var q1=(x1 - x2) * (x1 - x2);var q2=(y1 - y2) * (y1 - y2);return Math.sqrt(q1 + q2); +} +function haveKeyDULR(keycode){ +if(haveHero==false){return false;} +var Vobj=trouveHero();var dist=distancepyta(objectifherox,objectifheroy,Vobj.getX(),Vobj.getY());if(dist<5){ +var randomnumber=Math.floor(Math.random()*10000);var randomnumber2=Math.floor(Math.random()*10000);var randomnumber3=Math.floor(Math.random()*10000);var distp=50;idaction='idaction' + randomnumber + randomnumber2 + randomnumber3; +switch (keycode){ +case 38: //Haut +objectifheroy=objectifheroy - distp; +if($(".hero" + Vobj.id).attr('src')!=Vobj.contenu2){ +$(".hero" + Vobj.id).attr('src',Vobj.contenu2); +} +nextGameTick=(new Date).getTime(); +moveHero(idaction); +break; +case 40: //Bas +objectifheroy=objectifheroy + distp; +if($(".hero" + Vobj.id).attr('src')!=Vobj.contenu3){ +$(".hero" + Vobj.id).attr('src',Vobj.contenu3); +} +nextGameTick=(new Date).getTime(); +moveHero(idaction); +break; +case 39: //Droite +objectifherox=objectifherox + distp; +if($(".hero" + Vobj.id).attr('src')!=Vobj.data){ +$(".hero" + Vobj.id).attr('src',Vobj.data); +} +nextGameTick=(new Date).getTime(); +moveHero(idaction); +break; +case 37: //gauche +objectifherox=objectifherox - distp; +if($(".hero" + Vobj.id).attr('src')!=Vobj.src){ +$(".hero" + Vobj.id).attr('src',Vobj.src); +} +nextGameTick=(new Date).getTime(); +moveHero(idaction); +break; +} +} +} +var haveHeroMask=false;var objectHeroMask=false;function installherotarget(obj){ +var Ecran=document.getElementById("main");if(obj.type=='gameherotarget'){ +if(haveHeroMask){ +if(objectHeroMask.idscript==obj.idscript){ +obj.text=objectHeroMask.text; +obj.contenu3=objectHeroMask.contenu3;//h +obj.contenu2=objectHeroMask.contenu2;//b +obj.contenu5=objectHeroMask.contenu5;//g +obj.contenu4=objectHeroMask.contenu4;//d +} +} +var rn=Math.floor(Math.random()*10000);var rn2=Math.floor(Math.random()*10000);var rn3=Math.floor(Math.random()*10000);obj.idstr=rn + rn2 + rn3; +obj.objx=obj.getX(); +obj.objy=obj.getY(); +obj.border=0; +h='-45&&angleDegrees<45){ +h += ' src="' + obj.contenu4 + '" '; +}else{ +h += ' src="' + obj.text + '" '; +} +}else{ +h += ' src="' + obj.text + '" '; +} +}else{ +h=h + ' src="' + obj.text + '" '; +} +h=h + ' />'; +Ecran.innerHTML=Ecran.innerHTML + h; +if(lengthPts==1){ +if(obj.de>0){ +setTimeout('animGametargetID("' + obj.id + '","' + obj.idstr + '")',obj.de); +}else{ +setTimeout('animGametargetID("' + obj.id + '","' + obj.idstr + '")', 500); +} +} +} +if(obj.type=='gameheroselect'){ +h='ex&&hxey&&hy(largEcranWidth-3)){ +xm=largEcranWidth + parseInt(obj.getW()/1.5); +} +if(xm<3){ +xm=parseInt(obj.getW()/1.5) * -1; +} +var xanim=parseInt(xm);var yanim=parseInt(ym);obj.objx=xanim; +obj.objy=yanim; +animMoveGametarget(obj,idstr); +setTimeout('animGametargetID("' + obj.id + '","' + idstr + '")', 80); +} +} +} +} +} +function animGametargetID(i,idstr){ +animGametarget(CObjets[i],idstr); +} +function animMoveGametarget(obj,idstr){ +var angleHero=0;try{angleHero=getAngle(obj.getX(),obj.getY(),obj.objx,obj.objy); +}catch(err){} +var dist=distancepyta(obj.objx,obj.objy,obj.getX(),obj.getY());var deplace=parseInt(8 * zoom);var distCtr=parseInt(parseInt(obj.align) + 2); +if(distCtr<5){distCtr=5;} +if(dist>distCtr){ +var deplace=parseInt(parseInt(obj.align) * zoom);var evolx=parseFloat(obj.getX()) + ((deplace) * Math.cos(angleHero)); +var evoly=parseFloat(obj.getY()) + ((deplace) * Math.sin(angleHero)); +if(haveCollideObjectsTarget(evolx,evoly,obj.idstr)){ +var imgsrc=$('.herotarget' + obj.idstr).attr("src"); +if(imgsrc.indexOf(obj.text)==-1){ +$(".herotarget" + obj.idstr).attr('src',obj.text); +} +return false; +} +obj.setX(evolx); +obj.setY(evoly); +zoomGametarget(obj); +var angleDegrees=angleHero * (180 /Math.PI) ;var imgsrc=$('.herotarget' + obj.idstr ).attr("src"); +var newimg='';if(obj.objx>obj.getX()){ +newimg=obj.contenu4; +} +if(obj.objx<=obj.getX()){ +newimg=obj.contenu5; +} +if(obj.option==0){ +if(angleDegrees>65&&angleDegrees<115){ +newimg=obj.contenu3; +} +if(angleDegrees<-45&&angleDegrees>-135){ +newimg=obj.contenu2; +} +} +if(obj.field1==1){ +if(angleDegrees<0&&angleDegrees>-90){ +newimg=obj.contenu2; +} +if(angleDegrees>-180&&angleDegrees<-270){ +newimg=obj.contenu4; +} +if(angleDegrees>0&&angleDegrees<90){ +newimg=obj.contenu4; +} +if(angleDegrees<-90&&angleDegrees>-180){ +newimg=obj.contenu5; +} +if(angleDegrees>-270&&angleDegrees<-180){ +newimg=obj.contenu3; +} +if(angleDegrees>90&&angleDegrees<180){ +newimg=obj.contenu3; +} +} +if(imgsrc.indexOf(newimg)==-1){ +$(".herotarget" + obj.idstr).attr('src',newimg); +} +}else{ +var parsedPoints=[];parsedPoints=obj.data.split("!"); +if(mobiSite){ +parsedPoints=obj.contentpathsecond.split("!"); +} +var nbpts=parseInt(parsedPoints.length);if(obj.border==''){obj.border=0;} +obj.border=parseInt(obj.border); +if(parsedPoints.length>1){ +if(parseInt(obj.border + 2)>parseInt(nbpts)||parseInt(obj.border + 2)==parseInt(nbpts)){ +var imgsrc=($('.herotarget' + obj.idstr).attr("src")); +if(imgsrc.indexOf(obj.text)==-1){ +$(".herotarget" + obj.idstr).attr('src',obj.text); +} +} +} +obj.border=parseInt(parseInt(obj.border) +1); +} +} +function installfluxitems(obj){ +if(obj.type=='fluxitems'){ +var nind=parseInt(obj.ind);var h='';var color="black";if(obj.color){color=obj.color;} +var Ecran=document.getElementById("main");var rn=Math.floor(Math.random() * 100);obj.idstr=rn + '-' + obj.idscript ; +h=''; +$('#main').append(h); +obj.border=parseFlo(obj.contenu4); +setTimeout('firstaAnimCircleTargetID("' + obj.id + '")', 200); +} +} +function zoomfluxitems(i){ +var obj=CObjets[parseInt(i)];if(obj.type=='fluxitems'){ +var ex=parseInt(obj.getX() * zoom);var ey=parseInt(obj.getY() * zoom);var wb=parseInt(obj.getW() * zoom);var hb=parseInt(obj.getH() * zoom);var lt_ex=ex - (wb/2);var lt_ey=ey - (hb/2);var tobjtarget=$(".targetflux" + obj.idstr); +tobjtarget.css("width",wb + 'px').css("height",hb + 'px'); +tobjtarget.css("left",lt_ex + 'px').css("top",lt_ey + 'px'); +var valfontsize=parseInt(obj.fontsize * zoom);$("#targetfluxinner" + obj.id).css("font-size",valfontsize + 'px'); +} +} +function zoomfluxitemsY(i){ +var obj=CObjets[parseInt(i)];var ey=parseInt(obj.getY()* zoom);var hb=parseInt(obj.getH() * zoom);var lt_ey=ey - (hb/2);$(".targetflux" + obj.idstr).css("top",lt_ey + 'px'); +} +function firstanimfluxitemstID(i){ +var obj=CObjets[parseInt(i)];var objTarget=$('.targetflux' + obj.idstr); +objTarget.css("display", ""); +animfluxitems(i); +} +function animfluxitemstID(i){ +var obj=CObjets[parseInt(i)];animfluxitems(i); +} +function animfluxitems(i){ +var obj=CObjets[parseInt(i)];if(typeof(obj)=='undefined'){return false;} +if(!document.getElementById('targetflux' + obj.idstr)){ +return false; +} +if(obj.type=='fluxitems'){ +var objTarget=$('.targetflux' + obj.idstr); +var times=50;if(parseInt(obj.negnote)==1){ +objTarget.css("margin-top", "-1350px"); +} +var fluxitemstag23=0;var angleItems=0;try{angleItems=getAngle(obj.getX(),obj.getY(),obj.objx,obj.objy); +}catch(err){} +var dist=distancepyta(obj.objx,obj.objy,obj.getX(),obj.getY());var deplace=parseInt(10);if(dist>10){ +if(document.getElementById('targetflux' + obj.idstr)){ +deplace =parseInt(obj.align); +var evolx=parseFloat(obj.getX()) + ((deplace) * Math.cos(angleItems)); +var evoly=parseFloat(obj.getY()) + ((deplace) * Math.sin(angleItems)); +obj.setX(evolx); +obj.setY(evoly); +CObjets[obj.id].setX(parseFloat(evolx)); +CObjets[obj.id].setY(parseFloat(evoly)); +zoomfluxitems(i); +} +}else{ +var evolx=parseFloat(obj.objx);var evoly=parseFloat(obj.objy);obj.setX(evolx); +obj.setX(evoly); +CObjets[obj.id].setX(parseFloat(evolx)); +CObjets[obj.id].setY(parseFloat(evoly)); +zoomfluxitems(i); +collideImageChange(obj.id,obj.getX(),obj.getY()); +times=10; +var parsedPoints=[];parsedPoints=obj.contenu2.split("!"); +if(mobiSite){ +parsedPoints=obj.contentpathsecond.split("!"); +} +var nbpts=parseInt(parsedPoints.length);obj.border=parseInt(parseInt(obj.border) + 1); +if(parseInt(obj.border)>parseInt(nbpts)||parseInt(obj.border)==parseInt(nbpts)){ +if(parseInt(obj.option3)==0){ +restartAllAnimFlux(i); +if(parseInt(obj.negnote)==0){ +if(obj.strscript!=''){eval(obj.strscript);} +}else{ +obj.negnote=0; +objTarget.css("margin-top", "0px"); +} +}else{ +objTarget.css("margin-top", "0px"); +obj.contenu2 =""; +} +}else{ +var parsedPt=[];parsedPt=parsedPoints[parseInt(obj.border)].split(";"); +var xanim=parseInt(parsedPt[0]);var yanim=parseInt(parsedPt[1]);obj.objx=xanim; +obj.objy=yanim; +} +} +if(obj.contenu2!=""){ +if(document.getElementById('targetflux' + obj.idstr)){ +setTimeout('animfluxitemstID("' + obj.id + '");', times); //80 +} +} +} +} +function restartAllAnimFlux(i){ +var obj=CObjets[parseInt(i)];var parsedPoints=[];parsedPoints=obj.contenu2.split("!"); +if(mobiSite){ +parsedPoints=obj.contentpathsecond.split("!"); +} +obj.border=0; +var parsedStart=[];parsedStart=obj.contenu3.split(";"); +if(mobiSite){ +parsedStart=obj.contenu6.split(";"); +} +var xStart=parseInt(parsedStart[0]);var yStart=parseInt(parsedStart[1]);obj.setX(parseInt(xStart)); +obj.setY(parseInt(yStart)); +CObjets[obj.id].setX(parseInt(xStart)); +CObjets[obj.id].setY(parseInt(yStart)); +zoomfluxitems(i); +var parsedPt=[];parsedPt=parsedPoints[0].split(";"); +var xanimobj=parseInt(parsedPt[0]);var yanimobj=parseInt(parsedPt[1]);obj.objx=xanimobj; +obj.objy=yanimobj; +zoomfluxitems(i); +appltextfluxitem(i); +} +function appltextfluxitem(i){ +var obj=CObjets[parseInt(i)];if(obj.contenu4!=''){ +if(obj.contenu4.indexOf(';')==-1){ +var nh=obj.contenu4;$("#targetfluxinner" + obj.id).html(nh); +}else{ +var parsedText=[];parsedText=obj.contenu4.split(";"); +var r=Math.floor(Math.random() * parsedText.length);var nh=parsedText[r];$("#targetfluxinner" + obj.id).html(nh); +} +} +var ra=parseInt(Math.floor(Math.random() * 10));if(ra<5){ +$("#targetflux" + obj.idstr).attr('src','images/' + obj.text); +}else{ +$("#targetflux" + obj.idstr).attr('src','images/' + obj.data); +} +} +function collideImageChange(j,hx,hy){ +var objC=CObjets[parseInt(j)];for(var i=0; i < CObjets_count; i++){ +var obj=CObjets[i];if(obj.type=='gamechangeimages'){ +var ex=parseInt(obj.getX());var ey=parseInt(obj.getY());var ew=parseInt(obj.getW());var eh=parseInt(obj.getH());if(hx>ex&&hxey&&hyex&&hxey&&hyEquipMapMAX){ +EquipMapMAX=obj.contenu6; +} +var nind=parseInt(obj.ind);var h='';var Ecran=document.getElementById("main");var rn=Math.floor(Math.random() * 10000);obj.idstr=rn + '-' + obj.idscript ; +var ex=parseInt(obj.getX() * zoom);var ey=parseInt(obj.getY() * zoom);var wb=parseInt(obj.getW() * zoom);var hb=parseInt(obj.getH() * zoom);h += ''; +Ecran.innerHTML=Ecran.innerHTML + h; +var parsedPoints=[];parsedPoints=obj.contenu2.split("!"); +if(mobiSite){ +parsedPoints=obj.contentpathsecond.split("!"); +} +var initmt=parseInt(InitialMapTarget[parseInt(obj.contenu6)]);if(typeof(initmt) === "undefined" || isNaN(initmt)){ +InitialMapTarget=[0, 0, 0, 0]; +ObjectifMapTarget=[0, 0, 0, 0]; +initmt=parseInt(InitialMapTarget[parseInt(obj.contenu6)]); +} +var pars=parsedPoints[initmt];var parsedPt=[];parsedPt=pars.split(";"); +var xanim=parseInt(parsedPt[0]);var yanim=parseInt(parsedPt[1]);if(parseInt(obj.contenu6)==1){ +xanim=xanim - 5; +yanim=yanim - 5; +} +obj.setX(xanim); +obj.setY(yanim); +obj.objx=xanim; +obj.objy=yanim; +if(parseInt(EquipMapTarg)==parseInt(obj.contenu6)){ +setTimeout('firstanimMapTargetID("' + obj.id + '")', 500); +}else{ +setTimeout('displayMapTargetID("' + obj.id + '")', 300); +} +zoomMapTarget(obj.id ); +} +if(obj.type=='mapdes'){ +var Ecran=document.getElementById("main");var h='';h=h + ''; +Ecran.innerHTML=Ecran.innerHTML + h; +RunMapDice=false; +} +} +function loadDices(i){ +if(RunMapDice==false){ +var obj=CObjets[parseInt(i)];$('#bloc' + i ).attr('src',obj.contenu2); +RunMapDice=true; +$( "#bloc" + i ).animate({ +marginTop: "-250px" +}, 500, function(){ +$( "#bloc" + i ).animate({ +marginTop: "0px" +}, 500, function(){ +var num =Math.floor((Math.random()*9)+1); +if(num==0){num=1;} +if(num>6){num=3;} +ObjectifMapTarget[EquipMapTarg]=ObjectifMapTarget[EquipMapTarg] + num; +$('#bloc' + i ).attr('src','images/dice-' + num + '.png'); +var valDice=parseInt(num);if(obj.contenu3!=''){ +var reInitDices=false;eval(obj.contenu3); +if(reInitDices){ +RunMapDice=false; +} +}else{ +setTimeout(function(){ +RunActionDice=true; +},1500); +} +}); +}); +} +} +function zoomMapTarget(i){ +var obj=CObjets[parseInt(i)];if(obj.type=='maptarget'){ +var ex=parseInt(obj.getX() * zoom);var ey=parseInt(obj.getY() * zoom);var wb=parseInt(obj.getW() * zoom);var hb=parseInt(obj.getH() * zoom);var lt_ex=ex - (wb/2);var lt_ey=ey - (hb);var tobjtarget=$("." + obj.contenu6 + "targetMap" + obj.idstr); +tobjtarget.css("width",wb + 'px').css("height",hb + 'px'); +tobjtarget.css("left",lt_ex + 'px').css("top",lt_ey + 'px'); +} +} +function firstanimMapTargetID(i){ +var obj=CObjets[parseInt(i)];var objTarget=$("." + obj.contenu6 + "targetMap" + obj.idstr); +objTarget.css("display", ""); +var ctr1=parseInt(ObjectifMapTarget[obj.contenu6]);var ctr2=parseInt(InitialMapTarget[obj.contenu6]);if(ctr110){//distance +if(document.getElementById(obj.contenu6 + 'targetMap' + obj.idstr)){ +var deplace=parseInt(parseInt(obj.align));var evolx=parseFloat(obj.getX()) + ((deplace) * Math.cos(angleItems)); +var evoly=parseFloat(obj.getY()) + ((deplace) * Math.sin(angleItems)); +obj.setX(evolx); +obj.setY(evoly); +CObjets[obj.id].setX(parseInt(evolx)); +CObjets[obj.id].setY(parseInt(evoly)); +zoomMapTarget(i); +} +}else{//distance +var evolx=parseFloat(obj.objx);var evoly=parseFloat(obj.objy);obj.setX(evolx); +obj.setY(evoly); +CObjets[obj.id].setX(parseInt(evolx)); +CObjets[obj.id].setY(parseInt(evoly)); +zoomMapTarget(i); +collideImageChangeMaptarget(obj.id,obj.getX(),obj.getY()); +times=1; +var parsedPoints=[];parsedPoints=obj.contenu2.split("!"); +if(mobiSite){ +parsedPoints=obj.contentpathsecond.split("!"); +} +var nbpts=parseInt(parsedPoints.length);if(parseInt(InitialMapTarget[EquipMapTarg])>parseInt(nbpts) +||parseInt(InitialMapTarget[EquipMapTarg])==parseInt(parseInt(nbpts)-1)){ +var parsedActions=[];parsedActions=obj.contenu4.split("!"); +RunActionDice=false; +InitialMapTarget[EquipMapTarg]=parseInt(nbpts-2); +ObjectifMapTarget[EquipMapTarg]=InitialMapTarget[EquipMapTarg]; +rSp3(parsedActions[InitialMapTarget[EquipMapTarg]],obj.option3); +continu=false; +} +if(continu){ +if(RunActionDice){ +if(InitialMapTarget[EquipMapTarg]>0){ +if(InitialMapTarget[EquipMapTarg]==ObjectifMapTarget[EquipMapTarg]){ +var parsedActions=[];parsedActions=obj.contenu4.split("!"); +RunActionDice=false; +var num=parsedActions[ObjectifMapTarget[EquipMapTarg]];if(obj.option3==0||obj.option3=='0'){ +setTimeout("rSp3(" + num + ",0);",1500); +continu=false; +}else{ +setTimeout("rSp3(" + num + ",1);",1500); +continu=true; +} +} +} +} +} +if(InitialMapTarget[EquipMapTarg]ex&&hxey&&hy'; +Ecran.innerHTML=Ecran.innerHTML + h; +zoomObjetSimulItem(); +} +} +function execObjetSimulItem(createPage){ +if(lastPage0!=createPage){ +return false; +} +for(var i=0; i < CObjets_count; i++){ +var obj=CObjets[i];if(obj.type=='simulItem'){ +if(obj.evol==0){ +var deplace=4;var angleItems=parseFlo(obj.text);var evolx=parseFloat(obj.getX()) + (deplace * Math.cos(angleItems)); +var evoly=parseFloat(obj.getY()) + (deplace * Math.sin(angleItems)); +if(evolx>980||evoly>740||evolx<-20||evoly<-20){ +obj.evol=1; +} +obj.setX(parseInt(evolx)); +obj.setY(parseInt(evoly)); +CObjets[obj.id].setX(parseInt(evolx)); +CObjets[obj.id].setY(parseInt(evoly)); +collideImageChangeProcessSimul(i,evolx,evoly) +zoomObjetSimulItem(); +} +if(obj.evol==2){ +var deplace=4;var dist=distancepyta(obj.objx,obj.objy,obj.getX(),obj.getY());if(dist>6){ +var angleItems=parseFlo(getAngle(obj.getX(),obj.getY(),obj.objx,obj.objy));var evolx=parseFloat(obj.getX()) + (deplace * Math.cos(angleItems)); +var evoly=parseFloat(obj.getY()) + (deplace * Math.sin(angleItems)); +obj.setX(parseInt(evolx)); +obj.setY(parseInt(evoly)); +CObjets[obj.id].setX(parseInt(evolx)); +CObjets[obj.id].setY(parseInt(evoly)); +zoomObjetSimulItem(); +}else{ +obj.evol=0; +} +} +} +} +if(execTimerOK==1){ +setTimeout('execObjetSimulItem(' + createPage + ')', 50); +} +} +function findObjectLibreItem(){ +for(var i=0; i < CObjets_count; i++){ +var obj=CObjets[i];if(obj.type=='simulItem'){ +if(obj.evol==1){ +obj.evol=0; +return obj; +} +} +} +return false; +} +function zoomObjetSimulItem(){ +for(var i=0; i < CObjets_count; i++){ +var obj=CObjets[i];if(obj.type=='simulItem'){ +var ex=parseInt(obj.getX() * zoom);var ey=parseInt(obj.getY() * zoom);var wb=parseInt(obj.getW() * zoom);var hb=parseInt(obj.getH() * zoom);var lt_ex=ex - (wb/2);var lt_ey=ey - (hb/2);var tobjtarget=$(".simulItem" + obj.id); +tobjtarget.css("left",lt_ex + 'px').css("top",lt_ey + 'px'); +tobjtarget.css("width",wb + 'px').css("height",hb + 'px'); +} +} +} +function InsertObjetSimulItem(x,y,data,angleItems,t,createPage){ +if(lastPage0!=createPage){ +return false; +} +var simulBlocTemp=findObjectLibreItem();var simulBlocT=new CObjet();if(simulBlocTemp!=false){ +simulBlocT=simulBlocTemp; +simulBlocT.w=30; +simulBlocT.h=simulBlocT.w; +simulBlocT.x=x; +simulBlocT.y=y; +simulBlocT.data=data; +simulBlocT.evol=0; +simulBlocT.text=angleItems; +var fctimer='InsertObjetSimulItem(' + x + ',' + y + ',"' + data + '",' + angleItems + ',' + t + ',' + createPage + ')'; +setTimeout(fctimer, t); +return false; +} +simulBlocT.idscript='SimulItem'; +simulBlocT.strscript='simulItem'; +simulBlocT.type='simulItem'; +simulBlocT.w=30; +simulBlocT.h=simulBlocT.w; +simulBlocT.x=x; +simulBlocT.y=y; +simulBlocT.data=data; +simulBlocT.text=angleItems; +simulBlocT.url=''; +simulBlocT.align=''; +simulBlocT.initialtext=''; +simulBlocT.color='white'; +simulBlocT.css='background:transparent;border-bottom:solid 1px red;'; +simulBlocT.fontsize=10; +simulBlocT.an=1; +simulBlocT.de=0; +simulBlocT.cssadd=''; +simulBlocT.di=0; +simulBlocT.dedi=0; +simulBlocT.ind=1; +simulBlocT.create=0; +simulBlocT.boite=''; +simulBlocT.linkcontenu= ''; +simulBlocT.linkimage= ''; +simulBlocT.linkx= ''; +simulBlocT.linky= ''; +simulBlocT.field1= ''; +simulBlocT.field2= ''; +simulBlocT.field3= ''; +simulBlocT.field4= ''; +simulBlocT.AnimClic=0; +CObjets_Add(simulBlocT); +var fctimer='InsertObjetSimulItem(' + x + ',' + y + ',"' + data + '",' + angleItems + ',' + t + ',' + createPage + ')'; +setTimeout(fctimer, t); +} +function collideImageChangeProcessSimul(j,hx,hy){ +var objC=CObjets[parseInt(j)];for(var i=0; i < CObjets_count; i++){ +var obj=CObjets[i];if(obj.type=='simulBloc'){ +var ex=parseInt(obj.getX());var ey=parseInt(obj.getY());var ew=parseInt(obj.getW());var eh=parseInt(obj.getH());if(hx>ex&&hxey&&hyError
' +} +if(h!=''){ +if(obj.contenu2=='drag'){ +appliqueDragObj(obj); +} +$('#main').append(h); +} +} +} +function zoomPlugins(obj){ +if(obj.type.indexOf('plugin-')!=-1 +||obj.type.indexOf('plugques-')!=-1){ +var h='';var fct=obj.type.replace('plugin-','');fct=fct.replace('plugques-',''); +fct=fct + 'OnZoom(obj)'; +eval(fct); +} +} +function testPlugins(obj){ +if(obj.type.indexOf('plugin-')!=-1 +||obj.type.indexOf('plugques-')!=-1){ +var ret=false;var fct=obj.type.replace('plugin-','');fct=fct.replace('plugques-',''); +fct='ret=' + fct + 'IsOK(obj)'; +eval(fct); +return ret; +} +} +function processViewErrorsPlugins(obj){ +if(obj.type.indexOf('plugques-')!=-1){ +var ret=false;var fct=obj.type.replace('plugin-','');fct=fct.replace('plugques-',''); +fct='ret=' + fct + 'ViewErrors(obj)'; +eval(fct); +return ret; +} +} +function getObjMemoryStream(obj){ +if(obj.type.indexOf('plugques-')!=-1){ +var ret='';var fct=obj.type.replace('plugques-','');fct='ret=' + fct + 'SendObjMemory(obj)'; +eval(fct); +return ret; +}else{ +return ''; +} +} +function setObjMemoryStream(obj,mem){ +if(obj.type.indexOf('plugques-')!=-1){ +var ret='';var fct=obj.type.replace('plugques-','');fct='ret=' + fct + 'RetrieveObjMemory(obj,\'' + mem + '\')'; +eval(fct); +return ret; +}else{ +return ''; +} +} +function installInputSimple(obj){ +execScriptLoop(); +var h=''; +addToM(h); +recupDataObjectMem(obj,lastPage0); +} +function installInputNumerique(obj){ +if(obj.type=='inputNumerique'){ +var h='
'; +h += '
'; +h += '' + reponse + ''; +} +} +h=h + ''; +} +addToM(h); +recupDataObjectMem(obj,lastPage0); +} +function installInputTextAreaBloc(obj,color){ +var h=''; +h += '