QLabel * demoLabel = new QLabel(QString::fromLocal8Bit("демонстрационный ролик"), this); QFont font = demoLabel->font(); font.setPixelSize(48); font.setBold(true); font.setItalic(true); demoLabel->setFont(font); demoLabel->setGeometry(0, 500, 300, 50); demoLabel->installEventFilter(this); QPropertyAnimation * anim1 = new QPropertyAnimation(demoLabel, "geometry"); anim1->setDuration(9600); anim1->setStartValue(QRect(2280, 950, 1000, 50)); anim1->setEndValue(QRect(-1000, 950, 1000, 50)); anim1->setLoopCount(-1);