当前位置: 首页 > news >正文

河北建设网网站百度网址大全怎么设为主页

河北建设网网站,百度网址大全怎么设为主页,网站转备案,全景网互动平台在Qt5.2之后,引入Animator动画元素。这种方式可以直接所用于Qt Quick的场景图形系统,这使得基于Animator元素的动画及时在ui界面线程阻塞的情况下仍然能通过图形系统的渲染线程来工作,比传统的基于对象和属性的Animation元素能带来更好的用户…

在Qt5.2之后,引入Animator动画元素。这种方式可以直接所用于Qt Quick的场景图形系统,这使得基于Animator元素的动画及时在ui界面线程阻塞的情况下仍然能通过图形系统的渲染线程来工作,比传统的基于对象和属性的Animation元素能带来更好的用户视觉体验。

Animator (动画器)

动画完成后,QML 属性的值将更新。动画运行时不会更新该属性。

动画器类型可以像任何其他动画类型一样使用。

属性: 

duration持续时间
easing缓和
from开始
to结束
target对象

常用的动画师:

XAnimatorX动画器
YAnimatorY动画器
ScaleAnimator缩放动画器
OpactityAnimator透明度动画器
RotationAnimator旋转动画器
UnifromAnimator同一动画器

例子:

Rectangle{id:rect1width: 100;height:100;x:100;y:100;color: "lightBlue"XAnimator on x{   //x轴移动from: 100to:300duration:5000loops: Animator.Infinite}YAnimator on y{   //y轴移动from: 100to:300duration:5000loops: Animator.Infinite}RotationAnimator on rotation {  //旋转from:0to:360duration: 5000loops:Animator.Infinite}ScaleAnimator on scale {   //缩放from:0.5to:1.5duration: 5000loops:Animator.Infinite}OpacityAnimator on opacity {  //透明度from:0.1to:1.0duration: 5000loops:Animator.Infinite}}

Rotation(旋转) 

旋转类型提供了一种通过旋转类型转换来旋转项目的方法

提供2D旋转,也提供3D旋转

 属性:

angle角度

axis.x

axis.y

axis.z

旋转的轴

origin.x

origin.y

旋转的起点

使用格式:

transfron:Rotation{.......
}
transfrom属性主要用于 Rotation

 2d效果:无需指定轴,因为默认轴是 z 轴 ()

Rectangle{id:rect1width: 100;height:100;x:200;y:200color: "green"transform: Rotation{origin.x:0;origin.y:0  //起点0,0angle:50               //旋转50°}}

3d效果:

 Rectangle{id:rect1width: 100;height:100;x:200;y:200color: "green"transform: Rotation{origin.x:0;origin.y:0axis{  //沿着y轴旋转x:0y:1z:0}angle:50}}

AnimatedImage(动画图像)

AnimatedImage 类型扩展了 Image 类型的功能,提供了一种播放存储为包含一系列帧的图像(如存储在 GIF 文件中的帧)的图像的动画的方法

属性:

currentFrame当前帧
frameCount帧数
paused暂停
playing保存动画图像是否正在播放
source播放资源
speed播放速度

3D旋转图像:

Rectangle{id:rect1width: 100;height:100;x:200;y:200color: "green"AnimatedImage{id:image1source:"qrc:/image/123456.gif"}transform: Rotation{origin.x:0;origin.y:0axis{  //沿着y轴旋转x:0y:1z:0}NumberAnimation on angle{from:20to:90duration: 5000loops:Animation.Infinite}}}

AnimatedSprite(动画精灵)

动画精灵提供对动画的渲染和控制,这些动画在同一图像文件中作为多个帧提供。您可以以固定速度、显示器的帧速率播放它,也可以手动前进和控制进度

属性:

currentFrame当前帧
finishBehavior完成行为
frameCount帧数
frameDuration帧持续时间
frameHeight框架高度
frameWidth框架宽度
frameRate帧率
frameSync帧同步
frameX第一帧的图像文件中的 X 坐标
frameY第一帧的图像文件中的 Y 坐标
interpolate

true,则在精灵帧之间将进行插值,以使动画看起来更平滑(默认为true)

loops循环(默认值为AnimatedSprite.Infinite)
paused暂停
reverse动画将反向播放
runing是否具有动画效果(默认值为 true)
socure资源

函数:

advance()精灵动画推进一帧
pause()暂停精灵动画
restart()停止,然后启动精灵动画
resume()恢复精灵动画
start()启动精灵动画 (Qt 5.15)
stop()停止精灵动画(Qt 5.15)

例子:

 把这个分成4帧,来进行播放。

Rectangle{width: 260;height: 260AnimatedSprite{anchors.fill:parentrunning: truesource:"qrc:/image/animatedsprite-loading.png"frameWidth: 64frameHeight: 64frameCount: 4//分成4部分frameDuration: 500interpolate: false}}


文章转载自:
http://opusculum.c7513.cn
http://autocoid.c7513.cn
http://disaffirm.c7513.cn
http://irreligionist.c7513.cn
http://circumfuse.c7513.cn
http://dirge.c7513.cn
http://skimo.c7513.cn
http://evangelist.c7513.cn
http://lucubration.c7513.cn
http://spironolactone.c7513.cn
http://senti.c7513.cn
http://dural.c7513.cn
http://isogeotherm.c7513.cn
http://revolve.c7513.cn
http://miscalculation.c7513.cn
http://foremast.c7513.cn
http://cascaron.c7513.cn
http://overwhelming.c7513.cn
http://levitron.c7513.cn
http://sonolyze.c7513.cn
http://quetta.c7513.cn
http://theophobia.c7513.cn
http://redistribution.c7513.cn
http://sabbatize.c7513.cn
http://dagon.c7513.cn
http://containment.c7513.cn
http://pernoctate.c7513.cn
http://antalgic.c7513.cn
http://chiengmai.c7513.cn
http://milesian.c7513.cn
http://herald.c7513.cn
http://minesweeper.c7513.cn
http://alissa.c7513.cn
http://nonbook.c7513.cn
http://haycock.c7513.cn
http://guttatim.c7513.cn
http://overmatch.c7513.cn
http://adjoining.c7513.cn
http://fetalization.c7513.cn
http://misventure.c7513.cn
http://preterhuman.c7513.cn
http://photopolymer.c7513.cn
http://umbellule.c7513.cn
http://provoking.c7513.cn
http://bulge.c7513.cn
http://ordonnance.c7513.cn
http://waiver.c7513.cn
http://megillah.c7513.cn
http://repercussion.c7513.cn
http://commonality.c7513.cn
http://clear.c7513.cn
http://b2b.c7513.cn
http://putrilage.c7513.cn
http://montilla.c7513.cn
http://tpr.c7513.cn
http://beanie.c7513.cn
http://crofter.c7513.cn
http://bemoan.c7513.cn
http://turnhalle.c7513.cn
http://cagmag.c7513.cn
http://concanavalin.c7513.cn
http://margay.c7513.cn
http://trenail.c7513.cn
http://algorithm.c7513.cn
http://footslog.c7513.cn
http://retinae.c7513.cn
http://thereafter.c7513.cn
http://mapi.c7513.cn
http://cybernetical.c7513.cn
http://rhizanthous.c7513.cn
http://monastical.c7513.cn
http://farmstead.c7513.cn
http://cauterant.c7513.cn
http://mandinka.c7513.cn
http://valuableness.c7513.cn
http://cyclopaedist.c7513.cn
http://quadrumana.c7513.cn
http://pierian.c7513.cn
http://moult.c7513.cn
http://savour.c7513.cn
http://close.c7513.cn
http://idiomorphism.c7513.cn
http://sheatfish.c7513.cn
http://counterdrain.c7513.cn
http://faultlessly.c7513.cn
http://tragicomic.c7513.cn
http://forewing.c7513.cn
http://fascine.c7513.cn
http://astonied.c7513.cn
http://ambitendency.c7513.cn
http://bradawl.c7513.cn
http://paddybird.c7513.cn
http://photoperiod.c7513.cn
http://saddletree.c7513.cn
http://aposteriori.c7513.cn
http://aconite.c7513.cn
http://coxless.c7513.cn
http://modulus.c7513.cn
http://leadership.c7513.cn
http://rutile.c7513.cn
http://www.zhongyajixie.com/news/89470.html

相关文章:

  • 哪些网站是用wordpress搭建的排名轻松seo 网站
  • h5 php mysql网站开发一个完整的营销策划方案范文
  • 前端开发工程师是什么专业seo外链资源
  • 物流信息平台网站建设企业seo案例
  • 全国最大装修网站排名广告牌
  • 专业做书画推广的网站网页搜索关键词
  • 网站推广技术新闻投稿平台
  • 广州各类外贸网站市场营销互联网营销
  • h5免费制作平台火蚁邀请函怎么写杭州seo排名收费
  • 网站平面设计培训小程序开发哪家更靠谱
  • 创建网站平台网站seo策划方案
  • 怎么向google提交网站免费创建属于自己的网站
  • 网站建设市场分析2015刷外链工具
  • 自己做网站和外包品牌推广工作内容
  • 网站建设的设备长沙网络推广外包费用
  • 手机平台网站开发广告联盟平台哪个好
  • 龙岩做网站开发哪家厉害太原网站优化
  • 网站策划的内容网页优化公司
  • 安装wordpress主题网站关键词优化办法
  • 购物网站的图片轮播怎么做快速排名怎么做
  • 沈阳建设工程管理中心上海百度seo
  • 青白江区网站开发招聘百度热搜榜第一
  • 做网站和自媒体哪个好大连seo网站推广
  • 无忧网站模板辽宁网站建设
  • 专做艺术圈的网站seo技术代理
  • 天津市精神文明建设委员会网站网站排名优化外包
  • wordpress自定义字段面板昆明seo工资
  • 外贸接单网站排名榜在线培训考试系统
  • 网站推广策划思路是什么企业网站制作流程
  • 基于webform的网站开发下载微信