• X、Y轴抖动的动画


    实现这个动画效果用到了interpolator属性,这样就能让一些控件产生自定义的抖动效果

    这是用作interpolator的文件,用来做动画循环

    cycle.xml

    <?xml version="1.0" encoding="utf-8"?>
    <cycleInterpolator 
        xmlns:android="http://schemas.android.com/apk/res/android" 
        android:cycles="20" />

    x轴抖动:

    <?xml version="1.0" encoding="utf-8"?>
    <translate 
        xmlns:android="http://schemas.android.com/apk/res/android" 
        android:fromXDelta="0" 
        android:toXDelta="10" 
        android:duration="1000" 
        android:interpolator="@anim/cycle" />

    y轴抖动:

    <?xml version="1.0" encoding="utf-8"?>
    <translate 
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="1000"
        android:fromYDelta="0"
        android:interpolator="@anim/cycle"
        android:toYDelta="10" >
    </translate>

    有角度的抖动:

    <?xml version="1.0" encoding="utf-8"?>
    <rotate 
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="180"
        android:fromDegrees="-2"
        android:pivotX="100%"
        android:pivotY="100%"
        android:repeatCount="infinite"
        android:repeatMode="reverse"
        android:toDegrees="2" />
  • 相关阅读:
    页面使用本地IE版本
    C#获取客户端ip
    获取存储过程返回数据
    自制js表格排序
    读取数据用rs.open sql,conn,1,1
    学习存储过程
    COLLATE Chinese_PRC_CI_AS
    sqlserver存储过程语句(转)
    用P3P header解决iframe跨域访问cookie(转载)
    java通过dom创建和解析xml
  • 原文地址:https://www.cnblogs.com/tianzhijiexian/p/3988327.html
Copyright © 2020-2023  润新知