📄 emotionup.js
字号:
function showFace(thepage){
var PostType=1;
var retitle='';
var Forum_Emot='images/emotion/<><><>em1.gif<><><>em2.gif<><><>em3.gif<><><>em4.gif<><><>em5.gif<><><>em6.gif<><><>em7.gif<><><>em8.gif<><><>em9.gif<><><>em10.gif<><><>em11.gif<><><>em12.gif<><><>em13.gif<><><>em14.gif<><><>em15.gif<><><>em16.gif<><><>em17.gif<><><>em18.gif<><><>';
var Emot_Title='-----表情说明<><><>开心笑<><><>酷笑<><><>大哭<><><>分特<><><>生气<><><>害羞<><><>大牙笑<><><>微笑<><><>吐舌<><><>哇我要<><><>鲜花<><><>惭愧<><><>咖啡<><><>笨<><><>强<><><>怒<><><>杀<><><>猪<><><>';
Forum_Emot=Forum_Emot.split("<><><>");
Emot_Title=Emot_Title.split("<><><>");
var Emot_PageSize=15; //每页表情数
var Face_PageSize=15; //
var Emot_PageCount; //分页数
var Emot_Count=Forum_Emot.length-2; //共有表情数
if(Emot_Count%Emot_PageSize==0){
Emot_PageCount=(Emot_Count)/Emot_PageSize
}else{
Emot_PageCount=Math.floor((Emot_Count)/Emot_PageSize)+1
}
thepage=thepage-1;
if (thepage<=Emot_PageCount){
var istr
var EmotStr="";
if (thepage!=0 && Emot_PageCount>1)
{EmotStr+=' <img style="cursor: pointer;" onClick="showFace('+(thepage)+');" src="images/emotion/F.gif" width="14" height="14" title="上一页"> ';}
if (thepage!=Emot_PageCount-1)
{EmotStr+=' <img style="cursor: pointer;" onClick="showFace('+(thepage+2)+');" src="images/emotion/N.gif" width="14" height="14" title="下一页"> ';}
var EmotPath=Forum_Emot[0];
for(i=(thepage)*Face_PageSize;i<(thepage)*Face_PageSize+Face_PageSize;i++) {
if (i==Emot_Count){break}
istr='em'+(i+1);
var _c = Forum_Emot[i+1].indexOf('.');
var _em=Forum_Emot[i+1].substring(0,_c);
EmotStr+="<img onClick=face(':"+_em+":'); title='"+Emot_Title[i+1]+"' src='"+EmotPath+Forum_Emot[i+1]+"' align='absbottom'> ";
}
if (thepage!=0 && Emot_PageCount>1) EmotStr+="<img onClick=face(':em20:'); title='干杯' src='"+EmotPath+"em20.gif' align='absbottom'>";
var Forum_EmotObj=document.getElementById("emot")
sendFace.innerHTML=EmotStr+'';
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -