12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <div id="sen_page_trace" style="position: fixed;bottom:0;right:0;font-size:14px;width:100%;z-index: 999999;color: #000;text-align:left;font-family:'Arial';">
- <div id="sen_page_trace_tab" style="display: none;background:white;margin:0;height: 250px;">
- <div id="sen_page_trace_tab_tit" style="height:30px;padding: 6px 12px 0;border-bottom:1px solid #ececec;border-top:1px solid #ececec;font-size:16px">
- <?php foreach($trace as $key => $value){ ?>
- <span style="color:#000;padding-right:12px;height:30px;line-height: 30px;display:inline-block;margin-right:3px;cursor: pointer;font-weight:700"><?php echo $key ?></span>
- <?php } ?>
- </div>
- <div id="sen_page_trace_tab_cont" style="overflow:auto;height:212px;padding: 0; line-height: 24px">
- <?php foreach($trace as $info) { ?>
- <div style="display:none;">
- <ol style="padding: 0; margin:0">
- <?php
- if(is_array($info)){
- foreach ($info as $k=>$val){
- echo '<li style="border-bottom:1px solid #EEE;font-size:14px;padding:0 12px">' . (is_numeric($k) ? '' : $k.' : ') . htmlentities($val,ENT_COMPAT,'utf-8') .'</li>';
- }
- }
- ?>
- </ol>
- </div>
- <?php } ?>
- </div>
- </div>
- <div id="sen_page_trace_close" style="display:none;text-align:right;height:15px;position:absolute;top:10px;right:12px;cursor: pointer;"><img style="vertical-align:top;" src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPAgMAAABGuH3ZAAAACVBMVEUAAAADAwP///9QXGhCAAAANUlEQVR4XiWMSQoAIAwD81zpi6RnKXZeaYmXIWRTwFHCVsFS01dEDTIHFYOLlb2fuueFt355by4lFTSvayUAAAAASUVORK5CYII=" /></div>
- </div>
- <div id="sen_page_trace_open" style="height:30px;float:right;text-align: right;overflow:hidden;position:fixed;bottom:0;right:0;color:#000;line-height:30px;cursor:pointer;"><div style="background:#232323;color:#FFF;padding:0 6px;float:right;line-height:30px;font-size:14px"><?php echo G('beginTime','viewEndTime').'s ';?></div><img width="30" style="" title="ShowPageTrace" src="data:image/png;base64,<?php echo App::logo() ?>"></div>
- <script type="text/javascript">
- (function(){
- var tab_tit = document.getElementById('sen_page_trace_tab_tit').getElementsByTagName('span');
- var tab_cont = document.getElementById('sen_page_trace_tab_cont').getElementsByTagName('div');
- var open = document.getElementById('sen_page_trace_open');
- var close = document.getElementById('sen_page_trace_close').childNodes[0];
- var trace = document.getElementById('sen_page_trace_tab');
- var cookie = document.cookie.match(/senthot_show_page_trace=(\d\|\d)/);
- var history = (cookie && typeof cookie[1] != 'undefined' && cookie[1].split('|')) || [0,0];
- open.onclick = function(){
- trace.style.display = 'block';
- this.style.display = 'none';
- close.parentNode.style.display = 'block';
- history[0] = 1;
- document.cookie = 'senthot_show_page_trace='+history.join('|')
- }
- close.onclick = function(){
- trace.style.display = 'none';
- this.parentNode.style.display = 'none';
- open.style.display = 'block';
- history[0] = 0;
- document.cookie = 'senthot_show_page_trace='+history.join('|')
- }
- for(var i = 0; i < tab_tit.length; i++){
- tab_tit[i].onclick = (function(i){
- return function(){
- for(var j = 0; j < tab_cont.length; j++){
- tab_cont[j].style.display = 'none';
- tab_tit[j].style.color = '#999';
- }
- tab_cont[i].style.display = 'block';
- tab_tit[i].style.color = '#000';
- history[1] = i;
- document.cookie = 'senthot_show_page_trace='+history.join('|')
- }
- })(i)
- }
- parseInt(history[0]) && open.click();
- tab_tit[history[1]].click();
- })();
- </script>
|