v1.0.5
kenburns
在Flutter中实现Ken Burns效果。Ken Burns效果是一种在视频制作中从静态图像中使用的推拉和缩放效果。
25喜欢 14近 30 天下载40Pub 分数
平台暂无数据
Flutter 上的 Kenburns 效果
{"sdk":"flutter"}{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
The Ken Burns effect is a type of panning and zooming effect used in video production from still imagery.
Wrap your image with a KenBurns widget
Container(
height: 300,
child: KenBurns(
child: Image.network("https://lemag.nikonclub.fr/wp-content/uploads/2017/07/08.jpg", fit: BoxFit.cover,),
),
),
You can configure KenBurns Widget
KenBurns(
minAnimationDuration : Duration(milliseconds: 3000),
maxAnimationDuration : Duration(milliseconds: 10000),
maxScale : 8,
child: ...
});
You can display multiple child in KenBurns with a CrossFade animation
Container(
height: 300,
child: KenBurns.multiple(
childLoop: 3,
children: [
Image.network(
"https://www.photo-paysage.com/?file=pic_download_link/picture&pid=3100",
fit: BoxFit.cover,
),
Image.network(
"https://cdn.getyourguide.com/img/location_img-59-1969619245-148.jpg",
fit: BoxFit.cover,
),
Image.network(
"https://www.theglobeandmail.com/resizer/vq3O7LI3hvsjTP2N0m9NwU4W3Eg=/1500x0/filters:quality(80)/arc-anglerfish-tgam-prod-tgam.s3.amazonaws.com/public/4ETF3GZR3NA3RDDW23XDRBKKCI",
fit: BoxFit.cover,
),
],
),
),
dependencies:
kenburns: ^1.0.5
Copyright 2019 florent37, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.