1、打开腾讯手机管家,在清理里面点一下垃圾清理,再选择垃圾扫描,扫描完成后立即清理按完成就可以了。
2、卸载不常用的软件,这样可以减少手机占用空间。
3、不需要用软件的时候把软件都关闭了,后台运行不仅会用流量,而且运行的时候也会占用手机内存。
4、手机不要轻易的更新系统,很多新手机更新了新系统之后就更容易出现手机内存不足,手机反应更慢的。
<!DOCTYPE html><html>
<head>
<style>
div
{
width:100px
height:100px
background:red
position:absolute
animation:myfirst 5s
-webkit-animation:myfirst 5s
animation-fill-mode: forwards
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
0% {background:red left:500px bottom:50px}
25% {background:red left:500pxheight:130pxbottom:50px}
50% {background:red left:500px height:160pxbottom:50px}
75% {background:red left:500pxheight:190px bottom:50px}
100% {background:red left:500px height:210pxbottom:50px}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
这只是个演示的demo,方法就是这样,animation-fill-mode: forwards这一句给你解释下,这句就是当动画完成时,动画会停留在最后一帧。其他代码都比较简单,不懂随时问我。
希望能够帮助到你,望采纳!