Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if(isset($_GET['idlt']))
- {
- $idlt=$_GET['idlt'];
- }
- else
- {
- $idlt= '';
- }
- ?>
- <!DOCTYPE html>
- <html lang="fr">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- LES AUTRES META TAG DOIVENT ETRE PLACES APRES CE COMMENTAIRE ET NON AVANT -->
- <title>RIVER - Accueil</title>
- <!-- DECLARATION DU CSS DE BOOTSTRAP + DU MENU RAPIDE -->
- <link href="../css/bootstrap.min.css" rel="stylesheet">
- <link href="../css/supermenu.css" rel="stylesheet">
- <!-- CSS SPECIAL POUR FIXER LE MENU PRINCIPAL -->
- <link href="../navbar-fixed-top.css" rel="stylesheet">
- <!-- CSS POUR LE BOUTON back_top_button + menu lateral gauche -->
- <link href="../css/menu_rapide.css" rel="stylesheet">
- <!-- SCRIPTs JS -->
- </head>
- <body>
- <!-- Menu Principal -->
- <?php include '../includes/menu_header.php'; ?>
- <!-- Menu Rapide -->
- <?php include '../includes/menu_rapide.php'; ?>
- </br></br></br></br></br></br>
- <div class="container-fluid">
- <!-- Definition des colones pour affichage sur mobile ou tablette en faisant un full-width et l'autre en half-width -->
- <div class="row">
- <div class="col-xs-4 col-md-2">
- <!-- Contenu visible de la page à gauche -->
- <?php include 'org.php'; ?>
- </div>
- <div class="col-xs-18 col-md-8">
- <!-- Contenu principal de la page -->
- <div class="jumbotron">
- <h2>RIVER v2.0</h2>
- <a href="#" data-toggle="popover" title="Popover Header" data-content="Some content inside the popover">Toggle popover</a>
- <p>Bienvenue sur la version 2 de R.I.V.E.R.</p>
- <div id="main"></div>
- </div>
- </div>
- </div>
- </div>
- <!-- SCRIPTS JAVASCRIPT - Bootstrap core JavaScript + jQuery
- ================================================== -->
- <!-- Placed at the end of the document so the pages load faster -->
- <!--<script src="../js/bootstrap.min.js"></script>-->
- <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
- <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
- <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
- <!--<script type="text/javascript" src="../js/jquery.easing.1.3.js"></script>
- <script type="text/javascript" src="../js/jquery-1.11.3.min.js"></script>-->
- <script type="text/javascript" src="/common/calendar/dhtmlgoodies_calendar.js"></script>
- <script type="text/javascript" src="ahah.js"></script>
- <script type="text/javascript" src="../js/top.js"></script>
- <script type="text/javascript">
- //config
- $float_speed=0; //milliseconds
- $float_easing="easeOutQuint";
- $menu_fade_speed=500; //milliseconds
- $closed_menu_opacity=0.75;
- //cache vars
- $fl_menu=$("#fl_menu");
- $fl_menu_menu=$("#fl_menu .menu");
- $fl_menu_label=$("#fl_menu .label");
- $(window).load(function() {
- menuPosition=$('#fl_menu').position().top;
- FloatMenu();
- $fl_menu.hover(
- function(){ //mouse over
- $fl_menu_label.fadeTo($menu_fade_speed, 1);
- $fl_menu_menu.fadeIn($menu_fade_speed);
- },
- function(){ //mouse out
- $fl_menu_label.fadeTo($menu_fade_speed, $closed_menu_opacity);
- $fl_menu_menu.fadeOut($menu_fade_speed);
- }
- );
- });
- $(window).scroll(function () {
- FloatMenu();
- });
- function FloatMenu(){
- var scrollAmount=$(document).scrollTop();
- var newPosition=menuPosition+scrollAmount;
- if($(window).height()<$fl_menu.height()+$fl_menu_menu.height()){
- $fl_menu.css("top",menuPosition);
- } else {
- $fl_menu.stop().animate({top: newPosition}, $float_speed, $float_easing);
- }
- }
- </script>
- <script type="text/javascript">
- function doit() {
- var p=[];
- echo "p.push('$idlt');";
- $('input.cb').each( function() {
- if($(this).attr('checked')) {
- p.push($(this).attr('rel'));
- }
- } );
- $.ajax( {
- url:'userdetailinternational.php',
- type:'POST',
- data: {list:p},
- success: function(res) {
- alert(res);
- }
- });
- }
- </script>
- <script>
- $(document).ready(function(){
- $('[data-toggle="popover"]').popover();
- });
- </script>
- <script>
- $('#main').popover({selector: '[data-toggle="popover"]');
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement