Advertisement
Guest User

index.php

a guest
May 22nd, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.77 KB | None | 0 0
  1. <?php
  2. if(isset($_GET['idlt']))
  3. {
  4. $idlt=$_GET['idlt'];
  5. }
  6. else
  7. {
  8. $idlt= '';
  9. }
  10. ?>
  11. <!DOCTYPE html>
  12. <html lang="fr">
  13. <head>
  14. <meta charset="utf-8">
  15. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  16. <meta name="viewport" content="width=device-width, initial-scale=1">
  17. <!-- LES AUTRES META TAG DOIVENT ETRE PLACES APRES CE COMMENTAIRE ET NON AVANT -->
  18. <title>RIVER - Accueil</title>
  19. <!-- DECLARATION DU CSS DE BOOTSTRAP + DU MENU RAPIDE -->
  20. <link href="../css/bootstrap.min.css" rel="stylesheet">
  21. <link href="../css/supermenu.css" rel="stylesheet">
  22. <!-- CSS SPECIAL POUR FIXER LE MENU PRINCIPAL -->
  23. <link href="../navbar-fixed-top.css" rel="stylesheet">
  24. <!-- CSS POUR LE BOUTON back_top_button + menu lateral gauche -->
  25. <link href="../css/menu_rapide.css" rel="stylesheet">
  26. <!-- SCRIPTs JS -->
  27. </head>
  28. <body>
  29. <!-- Menu Principal -->
  30. <?php include '../includes/menu_header.php'; ?>
  31. <!-- Menu Rapide -->
  32. <?php include '../includes/menu_rapide.php'; ?>
  33. </br></br></br></br></br></br>
  34. <div class="container-fluid">
  35. <!-- Definition des colones pour affichage sur mobile ou tablette en faisant un full-width et l'autre en half-width -->
  36. <div class="row">
  37. <div class="col-xs-4 col-md-2">
  38. <!-- Contenu visible de la page à gauche -->
  39. <?php include 'org.php'; ?>
  40. </div>
  41. <div class="col-xs-18 col-md-8">
  42. <!-- Contenu principal de la page -->
  43. <div class="jumbotron">
  44. <h2>RIVER v2.0</h2>
  45. <a href="#" data-toggle="popover" title="Popover Header" data-content="Some content inside the popover">Toggle popover</a>
  46. <p>Bienvenue sur la version 2 de R.I.V.E.R.</p>
  47. <div id="main"></div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52.  
  53.  
  54.  
  55.  
  56.  
  57. <!-- SCRIPTS JAVASCRIPT - Bootstrap core JavaScript + jQuery
  58. ================================================== -->
  59. <!-- Placed at the end of the document so the pages load faster -->
  60. <!--<script src="../js/bootstrap.min.js"></script>-->
  61. <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  62.  
  63. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  64. <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
  65.  
  66.  
  67. <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
  68. <!--<script type="text/javascript" src="../js/jquery.easing.1.3.js"></script>
  69. <script type="text/javascript" src="../js/jquery-1.11.3.min.js"></script>-->
  70. <script type="text/javascript" src="/common/calendar/dhtmlgoodies_calendar.js"></script>
  71. <script type="text/javascript" src="ahah.js"></script>
  72. <script type="text/javascript" src="../js/top.js"></script>
  73.  
  74. <script type="text/javascript">
  75. //config
  76. $float_speed=0; //milliseconds
  77. $float_easing="easeOutQuint";
  78. $menu_fade_speed=500; //milliseconds
  79. $closed_menu_opacity=0.75;
  80.  
  81. //cache vars
  82. $fl_menu=$("#fl_menu");
  83. $fl_menu_menu=$("#fl_menu .menu");
  84. $fl_menu_label=$("#fl_menu .label");
  85.  
  86. $(window).load(function() {
  87. menuPosition=$('#fl_menu').position().top;
  88. FloatMenu();
  89. $fl_menu.hover(
  90. function(){ //mouse over
  91. $fl_menu_label.fadeTo($menu_fade_speed, 1);
  92. $fl_menu_menu.fadeIn($menu_fade_speed);
  93. },
  94. function(){ //mouse out
  95. $fl_menu_label.fadeTo($menu_fade_speed, $closed_menu_opacity);
  96. $fl_menu_menu.fadeOut($menu_fade_speed);
  97. }
  98. );
  99. });
  100.  
  101. $(window).scroll(function () {
  102. FloatMenu();
  103. });
  104.  
  105. function FloatMenu(){
  106. var scrollAmount=$(document).scrollTop();
  107. var newPosition=menuPosition+scrollAmount;
  108. if($(window).height()<$fl_menu.height()+$fl_menu_menu.height()){
  109. $fl_menu.css("top",menuPosition);
  110. } else {
  111. $fl_menu.stop().animate({top: newPosition}, $float_speed, $float_easing);
  112. }
  113. }
  114. </script>
  115. <script type="text/javascript">
  116. function doit() {
  117. var p=[];
  118. echo "p.push('$idlt');";
  119. $('input.cb').each( function() {
  120. if($(this).attr('checked')) {
  121. p.push($(this).attr('rel'));
  122. }
  123. } );
  124.  
  125. $.ajax( {
  126. url:'userdetailinternational.php',
  127. type:'POST',
  128. data: {list:p},
  129. success: function(res) {
  130. alert(res);
  131. }
  132. });
  133. }
  134. </script>
  135. <script>
  136. $(document).ready(function(){
  137. $('[data-toggle="popover"]').popover();
  138. });
  139. </script>
  140. <script>
  141. $('#main').popover({selector: '[data-toggle="popover"]');
  142. </script>
  143. </body>
  144. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement