fixes siema to expose source link

This commit is contained in:
buttle 2021-06-27 15:51:36 +02:00
parent 19d9fc9f3b
commit 622523a791
1 changed files with 65 additions and 57 deletions

View File

@ -1,30 +1,44 @@
<div style="position:relative;">
<?php
$this->headLink()->appendStylesheet($this->assetUrl('css/carousel.css', 'SimpleCarousel'));
$this->headScript()->appendFile($this->assetUrl('js/siema.min.js', 'SimpleCarousel'));
$title = false;
$caret = sprintf('<img class="caret" id="left" src="%s">', $this->assetUrl('caret.png', 'SimpleCarousel'));
$caret_r = sprintf('<img class="caret" id="right" src="%s">', $this->assetUrl('caret.png', 'SimpleCarousel'));
?>
<style>
.siema { margin: 0; }
.siema-wrap { height: <?php echo $height ?>; }
.siema-img { width: 100%; }
#siema-ui {
/* background-color: <?php echo $ui_background ?>; */
}
</style>
<div class="archive-carousel">
<?php if ($renderSourceLink) { ?>
<div class="source-link">
<a href="<?= $item_url ?>">Source</a>
</div>
<?php } ?>
<div style="position:relative;">
<div class="siema">
<?php
foreach ($urls as $url) {
$html = sprintf('<div class="siema-wrap" style="%s"><img class="siema-img" style="%s" src="%s"></div>', $wrapStyle, $imgStyle, $url);
echo $html;
}
?>
<?php foreach ($urls as $url) { ?>
<div class="siema-wrap"
style="<?= $wrapStyle ?>"
>
<img class="siema-img"
style="<?= $imgStyle ?>"
src="<?= $url ?>"
/>
</div>
<?php } ?>
</div>
<div id="siema-ui"></div>
</div>
@ -33,12 +47,8 @@
<?= $subTitle ?>
</div>
<?php } ?>
</div>
<style>
.siema-wrap { height: <?php echo $height ?>; }
.siema-img { width: 100%; }
#siema-ui { background-color: <?php echo $ui_background ?>; }
</style>
<script>
$(document).ready(function() {
let siema = new Siema({
@ -53,7 +63,6 @@
let caret = '<?php echo $caret;?>';
let caret_r = '<?php echo $caret_r;?>';
$('#siema-ui').append(caret);
<?php if ($title !== false): ?>
$('#siema-ui').append('<?php echo $title;?>');
@ -70,4 +79,3 @@
<?php endif ?>
});
</script>
</div>