css animation(动画)

<view class="handelScreenImageBox">
	<image class="handelScreenImage" src="@/static/images/right.png" />
</view>
.handelScreenImageBox{
		display: flex;
		align-items: center;
		transform: rotate(90deg);
		margin-left: 15px;
	}
.handelScreenImage {
		display:block;
		width: 10px;
		height: 18px;
		/* transform: rotate(90deg); */
		animation-name: Screen; // 动画名称
		animation-direction: alternate; // 动画在奇数次(1、3、5...)正向播放,在偶数次(2、4、6...)反向播放。
		animation-timing-function: ease; // 动画执行方式,linear:匀速;ease:先慢再快后慢;ease-in:由慢速开始;ease-out:由慢速结束;ease-in-out:由慢速开始和结束;
		animation-delay: 0s; // 动画延迟时间
		animation-iteration-count: infinite; //  动画播放次数,infinite:一直播放
		animation-duration: 1s; // 动画完成时间
	}

	@keyframes Screen {
		0% {
			/* transform: scale(1); */
			right: 5px;
		}

		25% {
			right: 2px;
		}

		50% {
			/* transform: scale(0.85); */
			right: 0px;
		}

		75% {
			right: -2px;
		}

		100% {
			/* transform: scale(1); */
			right: -5px;
		}
	}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值