Skip to content

Latest commit

 

History

History
217 lines (124 loc) · 3.1 KB

File metadata and controls

217 lines (124 loc) · 3.1 KB
title AnimationDefinition
category Interfaces
titleTemplate API - NativeScript
breadcrumbs
name href
API Index
/api/
name href
Interfaces
/api/#summary-Interfaces
name
AnimationDefinition
layout api
seo
description
Defines animation options for the View.animate method.
<script setup lang="ts"> import { provide } from "vue"; import API_DATA from "./AnimationDefinition.data.json"; provide('API_DATA', API_DATA); </script>
interface AnimationDefinition {
  backgroundColor: Color;
  curve: any;
  delay: number;
  duration: number;
  height: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit;
  iterations: number;
  opacity: number;
  rotate: number | Point3D;
  scale: Pair;
  target: View;
  translate: Pair;
  width: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit;
}

Summary

Properties

<template #title>

backgroundColor

<template #title>

curve

<template #title>

delay

<template #title>

duration

<template #title>

height

<template #title>

iterations

<template #title>

opacity

<template #title>

rotate

<template #title>

scale

<template #title>

target

<template #title>

translate

<template #title>

width