if(!function_exists('qode_loading_spinner_wave')) {
function qode_loading_spinner_wave() {
$html = '';
$html .= '<div class="wave">';
$html .= '<div class="bounce1"></div>';
$html .= '<div class="bounce2"></div>';
$html .= '<div class="bounce3"></div>';
$html .= '</div>';
return $html;
}
}
从php文件中检索上述代码,该文件在加载新页面时显示加载效果。我想在this post: https://stackoverflow.com/a/4730921/4229234
中添加列表中的随机字符串我想知道如何添加随加载效果一起出现的随机字符串。我试着添加
$ html。='echo $ randomThings [mt_rand(0,count($ randomThings)-1)];';
答案 0 :(得分:1)
如果您想在<div class="wave">
标记后添加随机数,则应该可以使用:
$html = '';
$html .= '<div class="wave">';
$random_key = mt_rand(0, count($randomThings) - 1);
$html .= $randomThings[$random_key];
$html .= '<div class="bounce1"></div>';
$html .= '<div class="bounce2"></div>';
$html .= '<div class="bounce3"></div>';
$html .= '</div>';
return $html;