zoukankan      html  css  js  c++  java
  • 图片360 度旋转 GIS

    <Image x:Name="image" HorizontalAlignment="Left" Height="166" PointerEntered="image_PointerEntered_1" PointerExited="image_PointerExited_1" Margin="449,349,0,0" VerticalAlignment="Top" Width="261" Source="http://img.trip.elong.com/guide/attachments/bc/d1/be/bcd1bef731bbde7796bb55edbed0fc1f.jpg" RenderTransformOrigin="0.5,0.5">
    <Image.RenderTransform>
    <CompositeTransform/>
    </Image.RenderTransform>
    <Image.Projection>
    <PlaneProjection/>
    </Image.Projection>
    </Image>

    <Storyboard x:Name="Storyboard1">
    <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="image">
    <EasingDoubleKeyFrame KeyTime="0:0:0.2" Value="90"/>
    <EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="180"/>
    <EasingDoubleKeyFrame KeyTime="0:0:0.8" Value="270"/>
    <EasingDoubleKeyFrame KeyTime="0:0:1" Value="360"/>
    </DoubleAnimationUsingKeyFrames>
    </Storyboard>

  • 相关阅读:
    zoj1137 poj1466
    poj3041
    zoj1455
    hdu1160 FatMouse's Speed
    zoj2770
    hdu1469
    hdu3169
    Mapped exception to response: 500 (Internal Server Error)
    Mapped exception to response: 500 (Internal Server Error)
    object is not a function
  • 原文地址:https://www.cnblogs.com/gisbeginner/p/2688496.html
Copyright © 2011-2022 走看看