45 <link rel="stylesheet" href="<?php echo(registry_url('custom','css'));?>" type="text/css" media="screen, projection"/> |
45 <link rel="stylesheet" href="<?php echo(registry_url('custom','css'));?>" type="text/css" media="screen, projection"/> |
46 <link rel="stylesheet" href="<?php echo(registry_url('tabs-slideshow','css'));?>" type="text/css" media="screen, projection"> |
46 <link rel="stylesheet" href="<?php echo(registry_url('tabs-slideshow','css'));?>" type="text/css" media="screen, projection"> |
47 |
47 |
48 <!-- JAVASCRIPT --> |
48 <!-- JAVASCRIPT --> |
49 <script type="text/javascript" src="<?php echo(registry_url('jquery','js'));?>"></script> |
49 <script type="text/javascript" src="<?php echo(registry_url('jquery','js'));?>"></script> |
|
50 <script type="text/javascript" src="<?php echo(registry_url('jquery-migrate','js'));?>"></script> |
|
51 <?php if( isset($_REQUEST['highlight']) && !empty($_REQUEST['highlight'])) { ?> |
|
52 <script type="text/javascript" src="<?php echo(registry_url('jquery-ui','js'))?>"></script> |
|
53 <?php } ?> |
50 <script type="text/javascript" src="<?php echo(registry_url('jquery-tools','js'));?>"></script> |
54 <script type="text/javascript" src="<?php echo(registry_url('jquery-tools','js'));?>"></script> |
51 <script type="text/javascript" src="<?php echo(registry_url('jquery-mousewheel','js'));?>"></script> |
55 <script type="text/javascript" src="<?php echo(registry_url('jquery-mousewheel','js'));?>"></script> |
|
56 |
52 |
57 |
53 <!-- FONT --> |
58 <!-- FONT --> |
54 <link href='<?php echo(registry_url('PT-Sans_Narrow','font'));?>' rel='stylesheet' type='text/css'> |
59 <link href='<?php echo(registry_url('PT-Sans_Narrow','font'));?>' rel='stylesheet' type='text/css'> |
55 <link href='<?php echo(registry_url('PT-Sans','font'));?>' rel='stylesheet' type='text/css'> |
60 <link href='<?php echo(registry_url('PT-Sans','font'));?>' rel='stylesheet' type='text/css'> |
56 |
61 |
83 $(".slidetabs").data("slideshow").play(); |
88 $(".slidetabs").data("slideshow").play(); |
84 |
89 |
85 $(".scrollable").scrollable(); |
90 $(".scrollable").scrollable(); |
86 }); |
91 }); |
87 |
92 |
88 |
93 // hightlight |
|
94 <?php |
|
95 $effect = "highlight"; |
|
96 if(isset($_REQUEST['highlight_effect']) && !empty($_REQUEST['highlight_effect'])) { |
|
97 $effect = $_REQUEST['highlight_effect']; |
|
98 } |
|
99 if( isset($_REQUEST['highlight']) && !empty($_REQUEST['highlight'])) { ?> |
|
100 $(function() { |
|
101 $("<?php echo $_REQUEST['highlight'];?>").delay(1000).effect("<?php echo $effect; ?>", {}, 5000); |
|
102 }); |
|
103 <?php } ?> |
|
104 |
89 |
105 |
90 |
106 |
91 </script> |
107 </script> |
92 <script type="text/javascript"> |
108 <script type="text/javascript"> |
93 |
109 |
174 <p style="width:400px;padding-right:400px;" class="slideText"> |
190 <p style="width:400px;padding-right:400px;" class="slideText"> |
175 <?php print $translate->_("3. TextSlide"); ?> |
191 <?php print $translate->_("3. TextSlide"); ?> |
176 </p> |
192 </p> |
177 </div> |
193 </div> |
178 <!-- fourth slide --> |
194 <!-- fourth slide --> |
179 <div class="slides" style="background-image:url('<?php echo("$C_default_rep/".$translate->_("config__slide_background")); ?>');"> |
195 <div class="slides" style="background-image:url('<?php echo("$C_default_rep/".$translate->_("config__slide_background")); ?>');" id="event-slide"> |
180 <p class="slideTitle" ><?php print $translate->_("4. TitreSlide"); ?></p> |
196 <p class="slideTitle" ><?php print $translate->_("4. TitreSlide"); ?></p> |
181 <br/><br/><br/> |
197 <br/><br/><br/> |
182 <p style="width:400px;padding-right:400px;" class="slideText"> |
198 <p style="width:400px;padding-right:400px;" class="slideText" id="event-abstract"> |
183 <?php print($translate->_('config__abstract')); ?> |
199 <?php print($translate->_('config__abstract')); ?> |
184 </p> |
200 </p> |
185 |
201 |
186 <a class="button_b" href="<?php echo(URL_ROOT.$C_default_rep); ?>"><span> <?php print $translate->_("4. Button"); ?></span> </a> |
202 <a class="button_b" href="<?php echo(URL_ROOT.$C_default_rep); ?>"><span> <?php print $translate->_("4. Button"); ?></span> </a> |
187 |
203 |