サイトにタッチ パンチ プラグインを実装しましたが、署名機能にタッチ機能を利用できません。Edgeで使用すると、タッチ機能が停止する前におそらく1秒間機能します。また、通常の Internet Explorer では問題なく動作しますが、Chrome と Firefox ではタッチ パンチがまったく機能しません。
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/themes/south-street/jquery-ui.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/jquery-ui.min.js"></script>
<link href="<?php echo plugins_url(); ?>/booking/css/jquery.signature.css" rel="stylesheet">
<script src="<?php echo plugins_url(); ?>/booking/js/jquery.signature.js"></script>
<script src='https://javascriptbase64.googlecode.com/files/base64.js' type='text/javascript'></script>
<script src="jquery.ui.touch-punch.min.js"></script>
署名コード:
<script>
$(function() {
$('#sig'+"<?php echo $row->bookingid; ?>").signature({
guideline: true,
guidelineOffset: 25,
guidelineIndent: 20,
guidelineColor: '#ff0000',
change: function(event, ui) {
var jsonval = $(this).signature('toJSON');
$("#signcanvas"+"<?php echo $row->bookingid; ?>").val(jsonval);
}
});
});
</script>