mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 19:39:16 -04:00
You can drag the watermark around but it doesn't stay in place. Need to figure out how to resize the dialog box and all of the supporting javascript
16 lines
544 B
PHP
16 lines
544 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<div id="gWatermarkAdmin">
|
|
<div id="gTargetImage" class="droppable">
|
|
<img src="<?= $sample_image ?>"></img>
|
|
</div>
|
|
<div id="gWaterMark">
|
|
<!-- This style and div is only temporary -->
|
|
<div style="background-color: #cccccc;">
|
|
<img src="<?= $watermark_image ?>" class="draggable"
|
|
width="<?= $watermark_width ?>" height="<?= $watermark_height ?>" />
|
|
</div>
|
|
</div>
|
|
<div id="gWatermarkPostionForm" >
|
|
<?= $watermark_position_form ?>
|
|
</div>
|
|
</div>
|