css_loader
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
function css_loader($arr=[]){
$arr=[
'font-size'=>'90px',
'position'=>'absolute',
'color'=>'red',
'left'=>'30%',
'top'=>'27%',
];
$style='';
foreach($arr as $kk=>$val){
$style.=$kk.':'.$val.';';
}
$style=rtrim($style,';');
return '<i class="fa fa-spinner fa-spin" style="'.$style.'"></i>';
}