我有一个问题,也许在 php 旁边有更好的方法,但我把这个想法扔在那里......让我知道你的专家建议。
- 我将有一个预先设计的证书,我将用 PHP 创建并用 HTML 设计。
- 用户将被引导到一个页面以输入要在证书上打印的名称。
- 最终结果将被调整为 8 1/2" x 11" 准备打印。
显示我要求的图像:设计示例
解决这个问题的最佳方法是什么?或者有什么东西是预制的,可以根据我的要求定制吗?
这是 Javascript 中的一个示例。
HTML:
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet">
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet">
Enter Name:
<input id="who" type="text" />
<input id="submit" type="button" class="btn" value="Submit" />
<div id="certificate" style="text-align:center;display:none;">
<h1>Certificate of Merit</h1>
<h3>Presented To:</h3>
<h4 id="name"></h4>
<hr />
<h2>Congratz</h2>
</div>
Javascript:
$('#submit').click(function() {
$('#name').html($('#who').val());
$('#certificate').fadeIn();
});
JSFiddle:http: //jsfiddle.net/6SWVV/1/