Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Xin ý tưởng Animation

15:00 06-09-2021 903 lượt xem 3 bình luận

Mình muốn dùng WPF là cái hơi giống giống như link bên dưới có được không nhỉ? Nếu được thì cho mình tài liệu để làm hoặc có code mẫu càng tốt.

https://50projects50days.com/projects/expanding-cards/

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
K9 SuperAdmin, KquizAdmin, KquizAuthor đã bình luận 05:59 07-09-2021
wow xịn ta
Minh Sự Moderator đã bình luận 15:57 06-09-2021

Sáng tạo xiu là ra à bạn.

Đây là Code Mẫu kèm Project, bạn tham khảo thử.

Code XAML.

<Window.Resources>
        <ImageBrush x:Key="img1" ImageSource="Assets/img1.jpg" Stretch="UniformToFill" />
        <ImageBrush x:Key="img2" ImageSource="Assets/img2.jpg" Stretch="UniformToFill" />
        <ImageBrush x:Key="img3" ImageSource="Assets/img3.jpg" Stretch="UniformToFill" />
        <ImageBrush x:Key="img4" ImageSource="Assets/img4.jpg" Stretch="UniformToFill" />
        <ImageBrush x:Key="img5" ImageSource="Assets/img5.jpg" Stretch="UniformToFill" />

        <Storyboard x:Key="OpacityStoryboardEnter" Storyboard.TargetProperty="Opacity">
            <DoubleAnimation Duration="0:0:0.3" To="1">
                <DoubleAnimation.EasingFunction>
                    <PowerEase/>
                </DoubleAnimation.EasingFunction>
            </DoubleAnimation>
        </Storyboard>
        <Storyboard x:Key="OpacityStoryboardExit" Storyboard.TargetProperty="Opacity">
            <DoubleAnimation Duration="0:0:0.3" To=".7">
                <DoubleAnimation.EasingFunction>
                    <PowerEase/>
                </DoubleAnimation.EasingFunction>
            </DoubleAnimation>
        </Storyboard>
        <Style x:Key="BorderCommon" TargetType="Border">
            <Setter Property="Opacity" Value="0.7"/>
            <Setter Property="Margin" Value="10"/>
            <Setter Property="BorderBrush" Value="Silver"/>
            <Setter Property="BorderThickness" Value="1"/>
            <Setter Property="Width" Value="65"/>
            <Setter Property="CornerRadius" Value="20"/>
            <Style.Triggers>
                <Trigger Property="IsMouseOver" Value="True">
                    <Trigger.EnterActions>
                        <BeginStoryboard Storyboard="{StaticResource OpacityStoryboardEnter}"/>
                    </Trigger.EnterActions>
                    <Trigger.ExitActions>
                        <BeginStoryboard Storyboard="{StaticResource OpacityStoryboardExit}"/>
                    </Trigger.ExitActions>
                </Trigger>
            </Style.Triggers>
        </Style>
        
    </Window.Resources>
    
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition Width="Auto"/>
            <ColumnDefinition Width="Auto"/>
        </Grid.ColumnDefinitions>

        <Border Name="Boder_1" Grid.Column="0" Background="{StaticResource img1}" Style="{StaticResource BorderCommon}" MouseLeftButtonDown="Border_MouseLeftButtonDown" Width="500"/>
        <Border Name="Boder_2" Grid.Column="1" Background="{StaticResource img2}" Style="{StaticResource BorderCommon}" MouseLeftButtonDown="Border_MouseLeftButtonDown"/>
        <Border Name="Boder_3" Grid.Column="2" Background="{StaticResource img3}" Style="{StaticResource BorderCommon}" MouseLeftButtonDown="Border_MouseLeftButtonDown"/>
        <Border Name="Boder_4" Grid.Column="3" Background="{StaticResource img4}" Style="{StaticResource BorderCommon}" MouseLeftButtonDown="Border_MouseLeftButtonDown"/>
        <Border Name="Boder_5" Grid.Column="4" Background="{StaticResource img5}" Style="{StaticResource BorderCommon}" MouseLeftButtonDown="Border_MouseLeftButtonDown"/>
                                
    </Grid>

Code Behind.

public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            Borders = new List<Border>()
            {
                Boder_1,
                Boder_2,
                Boder_3,
                Boder_4,
                Boder_5,
            };
        }

        public List<Border> Borders { get; set; }
        public bool AnimationIsRunning { get; set; }

        private void Border_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            var border = sender as Border;

            foreach (var bor in Borders)
            {
                if (bor == border)
                {
                    GrowUpAnimation(bor);
                }
                else
                {
                    SmallerAnimation(bor);
                }
            }
        }

        public void GrowUpAnimation(Border border)
        {
            DoubleAnimation doubleAnimation = new DoubleAnimation(500, TimeSpan.FromMilliseconds(300));
            doubleAnimation.EasingFunction = new PowerEase();
            border.BeginAnimation(WidthProperty, doubleAnimation);
        }

        public void SmallerAnimation(Border border)
        {
            DoubleAnimation doubleAnimation = new DoubleAnimation(65, TimeSpan.FromMilliseconds(300));
            doubleAnimation.EasingFunction = new PowerEase();
            border.BeginAnimation(WidthProperty, doubleAnimation);
        }
    }

 

Câu hỏi mới nhất