我创建了一个退出页面,用于通过Paypal处理付款。现在的问题是我希望显示一个不会加载到内部的动画GIF。我只得到静态图像。我试图在onLoad()上添加预加载函数,但没有...
我会保留这个结构
这是我的代码
<?php
echo "<html>\n";
echo "<head><title>Processing Payment...</title></head>\n";
echo "<body style=\"background:#313B54\" onLoad=\" document.form.submit();\">\n";
echo "<center style=\"height:100%\">\n";
echo "<img style=\"display:block; margin-top:35px\" src=\"".get_bloginfo('template_url')."/lib/gateways/ux/kleeia-logo.png\"/>\n";
echo "<h3 style=\"color:#fff; margin-top:35px\">Please wait, your payment is being processed.</h3>\n";
echo "<img src=\"".get_bloginfo('template_url')."/lib/gateways/ux/kleeia-loader.gif\"/>\n";
echo "</center>\n";
echo "<form method=\"post\" name=\"form\" action=\"".$this->paypal_url."\">\n";
foreach ($this->fields as $name => $value) {
echo "<input type=\"hidden\" name=\"$name\" value=\"$value\">";
}
echo "</form>\n";
echo "</body></html>\n"; ?>
提前感谢您的帮助。