71 lines
2.1 KiB
PHTML
71 lines
2.1 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle($this->config->title->data);
|
|
$this->headTitle('时间轴导航');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/water.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
|
$this->breadcrumb('<a href="/hiwater/">'.$this->config->title->hiwater.'</a>');
|
|
$this->breadcrumb('时间轴导航');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
$this->headScript()->appendFile('/js/timeline_var.js');
|
|
$this->headScript()->appendFile('/js/timeline_js/timeline-api.js');
|
|
$this->nav[] = array('link'=>"/hiwater",'title'=>'黑河生态水文遥感试验');
|
|
?>
|
|
<?= $this->render('breadcrumbs.phtml'); ?>
|
|
<div class="row">
|
|
<div class="span3">
|
|
<?= $this->partial('hiwater/navi.phtml'); ?>
|
|
</div>
|
|
<div class="span9">
|
|
<div id="tl" class="timeline-default" style="height:600px;"> </div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
var tl;
|
|
var date = "May 22 2012 13:00:00";
|
|
var theme = Timeline.ClassicTheme.create();
|
|
theme.event.label.width = 250; // px
|
|
theme.event.bubble.width = 250;
|
|
theme.event.bubble.height = 200;
|
|
|
|
window.onload=function() {
|
|
var eventSource = new Timeline.DefaultEventSource();
|
|
var bandInfos = [
|
|
Timeline.createBandInfo({
|
|
width: "70%",
|
|
intervalUnit: Timeline.DateTime.MONTH,
|
|
eventSource: eventSource,
|
|
date: date,
|
|
intervalPixels: 100,
|
|
theme: theme
|
|
}),
|
|
Timeline.createBandInfo({
|
|
width: "30%",
|
|
intervalUnit: Timeline.DateTime.YEAR,
|
|
eventSource: eventSource,
|
|
date: date,
|
|
overview: true,
|
|
intervalPixels: 200,
|
|
theme: theme
|
|
})
|
|
];
|
|
bandInfos[1].syncWith = 0;
|
|
bandInfos[1].highlight = true;
|
|
|
|
tl = Timeline.create(document.getElementById("tl"), bandInfos);
|
|
tl.loadXML("/hiwatertime.xml", function(xml, url) {
|
|
eventSource.loadXML(xml, url);
|
|
});
|
|
}
|
|
var resizeTimerID = null;
|
|
window.onresize=function() {
|
|
if (resizeTimerID == null) {
|
|
resizeTimerID = window.setTimeout(function() {
|
|
resizeTimerID = null;
|
|
tl.layout();
|
|
}, 500);
|
|
}
|
|
}
|
|
</script>
|