• WPF制作歌词动画


    最近再做一个UWP的音乐播放器,今天实现了歌词动画,不是滚动的,滚动的慢慢研究
    思路:在右边放了三个textBlock,设置 textBlock的effect属性
    <TextBlock.Effect>
                                <BlurEffect Radius="0"></BlurEffect>
                    </TextBlock.Effect>
    就是模糊效果。
    中间的textBlock没有使用动画
    动画播放时间就是歌词上一句跟下语句的时间差
    下面放后台动画代码
     Storyboard DownLrcStory = new Storyboard();
                           
                            DoubleAnimation up = new DoubleAnimation(0, 30, new Duration(TimeSpan.FromSeconds(time)));
                            DoubleAnimation next = new DoubleAnimation(30, 0, new Duration(TimeSpan.FromSeconds(nextTime)));
                            up.RepeatBehavior = RepeatBehavior.Forever;
                            DownLrcStory.Children.Add(up);
                            DownLrcStory.Children.Add(next);
                            Storyboard.SetTarget(up, lrcDown);
                            Storyboard.SetTarget(next, lrcNext);
                            Storyboard.SetTargetProperty(up, new PropertyPath("Effect.Radius"));
                            Storyboard.SetTargetProperty(next, new PropertyPath("Effect.Radius"));
                            DownLrcStory.Begin();
  • 相关阅读:
    Droppable(放置)组件
    Draggable(拖动)组件
    1.引入必要的文件 2.加载 UI 组件的方式 4.Parser 解析器
    mvc自带的异步表单提交
    MVC,jquery异步
    Container With Most Water
    Palindrome Number
    String to Integer (atoi)
    Merge k Sorted Lists
    Longest Valid Parentheses
  • 原文地址:https://www.cnblogs.com/wscar/p/6440705.html
Copyright © 2020-2023  润新知