qq群里点击欢迎会出现什么会出现设置好的欢迎话语 , 手机打开QQ , 点击工具栏【联系人】 , 再点击“群聊” , 选择一个你创建的qq群 , 进入群聊页面 。注意:你必须是群主或者群管理员 。2.进入群聊消息页面后 , 点击右上角的横线 , 再参考以下教程 , 点击添加【群机器人】 。注意:QQ是8.0.8以上最新版本具备此功能 。4群聊机器人如何设置 , QQ群怎么添加群聊机器人3.进入群机器人页面 , 点击你已经添加的【Q群管家】 。4.进入Q群管家页面 , 选择功能【入群欢迎】的“去设置” 。5.进入设置入群欢迎语页面 , 点击【添加欢迎语】 。6.进入添加欢迎语页面 , 输入你想要的欢迎文字和进群提示 , 再点击右上角的【完成】 。7.完成后 , 返回页面 , 就可以看到已经成功设置加群欢迎语和进群提示 。8.当某个新成员加入本群时 , 群消息就会自动推送回复欢迎语和进群提示了 。
【手机欢迎页面特效】

文章插图
在网页前面怎样添加欢迎画面呀?你的提问过于简洁, 都不明白你想要了解什么.
几种做法:
1. 在网站的index.html里加上你的flash. 在flash中加个链接指到真正的首页. 这是最简单的做法.
2. 如需要在第一次进入网站首页时显示flash且只显示一次, 可以用js或php/asp等脚本语言 判断cookie来实现.
3. 软件欢迎屏或广告式欢迎画面: 在web中做这样的欢迎画面需要编写js脚本, 这里是个演示: http://faps.org/welcome_demo.html
网页设计中如何打开一个网页后实现逐字显示“欢迎光临”???网上搜集一下网页特效文字代码 。
根据你的要求我找到了一则代码 , 你加入试试效果 。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>网页特效|Linkweb.cn/Js|---打字效果的文字切换</title>
</head>
<body>
<script language="JavaScript1.2">
<!--
/*
Typing Scroller
Submitted by bengaliboy00@hotmail.com (hp: http://www.angelfire.com/nt/bengaliboy/)
With modifications by Dynamicdrive.com
For full source code, usage terms, and 100s more scripts, visit http://dynamicdrive.com
*/
//设置滚动的内容
var line=new Array()
line[1]="欢迎光临网页特效"
line[2]="http://linkweb.cn/js"
line[3]="提出宝贵意见"
line[4]="希望你喜欢这种模式"
line[5]="再次感谢你的光临"
//设置字体大小
var ts_fontsize="16px"
//--Don't edit below this line
var longestmessage=1
for (i=2;i<line.length;i++){
if (line[i].length>line[longestmessage].length)
longestmessage=i
}
//Auto set scroller width
var tscroller_width=line[longestmessage].length
lines=line.length-1 //--Number of lines
//if IE 4+ or NS6
if (document.all||document.getElementById){
document.write('<form name="bannerform">');
document.write('<input type="text" name="banner" size="'+tscroller_width+'"');
document.write('style="background-color: '+document.bgColor+'; color: '+document.body.text+'; font-family: verdana; font-size: '+ts_fontsize+'; font-weight:bold; border: medium none" onfocus="blur()">');
document.write('</form>');
}
temp=""
nextchar=-1;
nextline=1;
cursor="\\"
function animate(){
if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){
nextline++;
nextchar=-1;
document.bannerform.banner.value=http://a.lfedu.net/post/temp;
temp="";
setTimeout("nextstep()",3000)}
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
nextline=1;
nextchar=-1;
document.bannerform.banner.value=http://a.lfedu.net/post/temp;
temp="";
setTimeout("nextstep()",3000)}
else{
nextstep()}}
function nextstep(){
if (cursor=="\\"){
cursor="|"}
else if (cursor=="|"){
cursor="/"}
else if (cursor=="/"){
cursor="-"}
else if (cursor=="-"){
cursor="\\"}
nextchar++;
temp+=line[nextline].charAt(nextchar);
document.bannerform.banner.value=http://a.lfedu.net/post/temp+cursor
setTimeout("animate()",100)}
//if IE 4+ or NS6
if (document.all||document.getElementById)
window.onload=animate
// -->
</script>
</body>
</html>