酷炫的标题动画
<Animate Title Generator>
酷炫的标题动画,为你的程式加上一段漂亮的开场吧!
Animate Title Generator 是一个可以附加在任何C语言的程式上的Header,让你的程式更加与众不同,增添魅力。
里面利用了ANSI Escape Sequence 和 Time,制作了一个动画的程式标题,只要输入程式名字的参数,就可以马上应用在你的程式中了!
<Animate Title Generator>
点此下载:
title2.rar
(1.49 KB)
函式库介绍:
name(int num,char *p1,char *p2, char *p3);
设定程式名字,最多3行
num:名字长度,限制在1~3个
p1:第一个名字
p2:第二个名字
p3:第三个名字
必须完整输入全部参数。
example:
name(2,”My”,”Program”,”-“);
title();执行title动画
wait(float second,int gate);等待一小段时间
second:等待的秒数
gate:是否显示提示(1显示,0不显示)
wait(3.0,1);
cursor_off();关闭cursor光标
cursor_on();打开cursor光标
close();印出一行星星
使用例子:
程序代码:
#include<stdio.h> #include"title.h" int main(){ name(3,"Animate","Title","Generator"); title(); wait(3.0,1); //Your Code Start Here printf("\nHello World\n"); }
注:目前ANSI Escape Sequence 只在部分的Console有效,我这里用的是Linux/Unix的系统,据说Window比较老旧版本的console也可以,在Code:Block使用的话要另外使用其他别的函式库。所以目前这个Hearder只支持Linux/Unix Like 的Console和支持ANSI Escape Sequence 的Console使用。
[此贴子已经被作者于2016-12-18 21:48编辑过]