-
大小: 423KB文件類型: .zip金幣: 1下載: 0 次發(fā)布日期: 2021-01-02
- 語言: 其他
- 標(biāo)簽: Qt動(dòng)畫??Qt??
資源簡介
使用Qt動(dòng)畫機(jī)制編寫的一個(gè)簡單的動(dòng)畫程序,實(shí)現(xiàn)小鳥在客戶區(qū)飛過,適合新手學(xué)習(xí)研究。
代碼片段和文件信息
#include?
#include?
#include?
#include?
#include?
int?main(int?argcchar?*argv[])
{
????QApplication?app(argcargv);
????QWidget?*w=new?QWidget();
????w->resize(640520);
????QPixmap?birdimg=QPixmap(“bird.png“).scaled(4530);
????QLabel?*bird=new?QLabel(w);
????//bird->setText(“Hello“);
????bird->setPixmap(birdimg);
????QPropertyAnimation?*anim1=new?QPropertyAnimation(bird?“pos“);
????anim1->setDuration(3000);
????anim1->setStartValue(QPoint(0?520));
????anim1->setEndValue(QPoint(580?10));
????anim1->setEasingCurve(QEasingCurve::OutBounce);
????anim1->start();
????bird->move(-40-40);
????w->show();
????return?app.exec();
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件???????21090??2012-07-16?13:44??FlyBird\bird.png
?????文件??????188002??2012-07-16?13:41??FlyBird\bird1.png
?????目錄???????????0??2012-07-16?13:51??FlyBird\debug\
?????文件??????515113??2012-07-16?13:51??FlyBird\debug\FlyBird.exe
?????文件??????173980??2012-07-16?13:51??FlyBird\debug\main.o
?????文件??????????28??2012-07-15?20:53??FlyBird\FlyBird.pro
?????文件???????14553??2012-07-16?14:20??FlyBird\FlyBird.pro.user
?????文件?????????727??2012-07-16?13:51??FlyBird\main.cpp
?????文件????????6833??2012-07-16?13:50??FlyBird\Makefile
?????文件????????5491??2012-07-16?13:50??FlyBird\Makefile.Debug
?????文件????????5534??2012-07-16?13:50??FlyBird\Makefile.Release
?????目錄???????????0??2012-07-16?13:50??FlyBird\release\
評(píng)論
共有 條評(píng)論