1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php defined('InShopNC') or exit('Access Invalid!');?>
- <div class="eject_con">
- <div id="warning"></div>
- <form action="index.php?act=cut&op=pic_cut" id="form_cut" method="post">
- <input type="hidden" name="form_submit" value="ok" />
- <input type="hidden" id="x" name="x" value="<?php echo $_GET['x'];?>" />
- <input type="hidden" id="x1" name="x1" />
- <input type="hidden" id="y1" name="y1" />
- <input type="hidden" id="x2" name="x2" />
- <input type="hidden" id="y2" name="y2" />
- <input type="hidden" id="w" name="w" />
- <input type="hidden" id="h" name="h" />
- <input type="hidden" id="url" name="url" value="<?php echo $_GET['url'];?>" />
- <input type="hidden" id="filename" name="filename" value="<?php echo $_GET['filename'];?>" />
- <div class="pic-cut-<?php echo $_GET['x'];?>">
- <div class="work-title"><?php echo $lang['cut_working_area'];?></div>
- <div class="work-layer">
- <p><img id="nccropbox" src="<?php echo $_GET['url'];?>"/></p>
- </div>
- <div class="thumb-title"><?php echo $lang['cut_preview'];?></div>
- <div class="thumb-layer">
- <p><img id="preview" src="<?php echo $_GET['url'];?>"/></p>
- </div>
- <div class="cut-help">
- <h4><?php echo $lang['cut_help'];?></h4>
- <p><?php echo $lang['cut_help_tips'];?></p>
- </div>
- <div class="bottom">
- <a class="submit-btn" nctype="submit-btn" href="Javascript: void(0)"><?php echo $lang['cut_submit'];?></a>
- </div>
- </div>
- </form>
- </div>
- <script type="text/javascript">
- function showPreview(coords)
- {
- if (parseInt(coords.w) > 0){
- var rx = <?php echo $_GET['x'];?> / coords.w;
- var ry = <?php echo $_GET['y'];?> / coords.h;
- $('#preview').css({
- width: Math.round(rx * <?php echo $output['width'];?>) + 'px',
- height: Math.round(ry * <?php echo $output['height'];?>) + 'px',
- marginLeft: '-' + Math.round(rx * coords.x) + 'px',
- marginTop: '-' + Math.round(ry * coords.y) + 'px'
- });
- }
- $('#x1').val(coords.x);
- $('#y1').val(coords.y);
- $('#x2').val(coords.x2);
- $('#y2').val(coords.y2);
- $('#w').val(coords.w);
- $('#h').val(coords.h);
- }
- $(function(){
- $('.dialog_head').css('margin-top','0px');
- $('.page').css('padding-top','0px');
- $('.dialog_close_button').remove();
- $('#nccropbox').Jcrop({
- aspectRatio:1,
- setSelect: [ 0, 0, <?php echo $_GET['x'];?>, <?php echo $_GET['y'];?> ],
- minSize:[50, 50],
- allowSelect:0,
- onChange: showPreview,
- onSelect: showPreview
- });
- $('a[nctype="submit-btn"]').click(function(){
- var x1 = $('#x1').val();
- var y1 = $('#y1').val();
- var x2 = $('#x2').val();
- var y2 = $('#y2').val();
- var w = $('#w').val();
- var h = $('#h').val();
- if(x1=="" || y1=="" || x2=="" || y2=="" || w=="" || h==""){
- alert("You must make a selection first");
- return false;
- }
- var d=$('#form_cut').serialize();
- $.post('index.php?act=cut&op=pic_cut',d,function(data){
- call_back(data);
- DialogManager.close('cutpic');
- });
- });
- });
- </script>
|