이모티콘 사용하기!!!
- 10-28
- 7,340 회
- 2 건
스킨에 room.php 에서 chattext 를 바꾸면 됩니다 ^^
// 채팅 출력부분
function chattext(str,col)
{
<?
$handle=@opendir('skin/homebox00/imoticon/.');
while (($file = @readdir($handle))!==false)
{ $imoticon=str_replace('.gif','',$file);
if(strpos($file,'.gif')>1)
{?>
str=str.replace("<?=$imoticon?>","<img src='imoticon/<?=$file?>'>");
<?}
}
closedir($handle);
?>
chatview.document.body.insertAdjacentHTML('beforeEnd', '<font color='+col+'>'+str+'</font><br>');
chatview.document.body.scrollTop=99999999;
}
스킨경로에 imotion/ 이라는 폴더안에 xxx.gif 형식으로 넣습니다
xxx 는 이모티콘 문자열이 됩니다 ^^
참고해주세요
// 채팅 출력부분
function chattext(str,col)
{
<?
$handle=@opendir('skin/homebox00/imoticon/.');
while (($file = @readdir($handle))!==false)
{ $imoticon=str_replace('.gif','',$file);
if(strpos($file,'.gif')>1)
{?>
str=str.replace("<?=$imoticon?>","<img src='imoticon/<?=$file?>'>");
<?}
}
closedir($handle);
?>
chatview.document.body.insertAdjacentHTML('beforeEnd', '<font color='+col+'>'+str+'</font><br>');
chatview.document.body.scrollTop=99999999;
}
스킨경로에 imotion/ 이라는 폴더안에 xxx.gif 형식으로 넣습니다
xxx 는 이모티콘 문자열이 됩니다 ^^
참고해주세요