Silverlight之我见——制作星星闪烁动画
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Animation;
- using System.Windows.Shapes;
- namespace RandEllipseSample
- {
- public partial class MainPage : UserControl
- {
- int shapesCount = 500; //图形数组的容量
- //随机大小的上限
- int theMaxW = 1300;
- int theMaxH = 720;
- Random rand = null;
- Storyboard story = null;
- Ellipse[] myShapes = null;
- public MainPage()
- {
- InitializeComponent();
- rand = new Random();
- story = new Storyboard();
- story.Completed += new EventHandler(story_Completed);
- InitShapes();
- InitAnimation();
- //加载完成后马上播放动画
- this.Loaded += new RoutedEventHandler(MainPage_Loaded);
- }
- void MainPage_Loaded(object sender, RoutedEventArgs e)
- {
- story.Begin();
- }
- void story_Completed(object sender, EventArgs e)
- {
- for (int x = 0; x < shapesCount; x++)
- {
- myShapes[x].Margin = new Thickness(Convert.ToDouble(rand.Next(0, theMaxW)), Convert.ToDouble(rand.Next(0, theMaxH)), 0, 0);
- }
- InitAnimation();
- }
- /// <summary>
- /// 初始化形状数组
- /// </summary>
- private void InitShapes()
- {
- myShapes = new Ellipse[shapesCount];
- //实例化所有成员
- for (int n = 0; n < shapesCount; n++)
- {
- myShapes[n] = new Ellipse();
- myShapes[n].Fill = new SolidColorBrush(Colors.Transparent);
- myShapes[n].StrokeThickness = 2d;
- //笔触为线性渐变
- LinearGradientBrush gBrush = new LinearGradientBrush();
- gBrush.StartPoint = new Point(0, 0);
- gBrush.EndPoint = new Point(1, 1);
- gBrush.GradientStops.Add(new GradientStop()
- {
- Color = Colors.Yellow,
- Offset = 0
- });
- gBrush.GradientStops.Add(new GradientStop()
- {
- Color = Colors.Red,
- Offset = 0.25
- });
- gBrush.GradientStops.Add(new GradientStop()
- {
- Color = Colors.White,
- Offset = 0.5
- });
- gBrush.GradientStops.Add(new GradientStop()
- {
- Color = Colors.Blue,
- Offset = 0.75
- });
- myShapes[n].Stroke = gBrush;
- //位置
- myShapes[n].Margin = new Thickness(Convert.ToDouble(rand.Next(0,theMaxW)), Convert.ToDouble(rand.Next(0,theMaxH)), 0, 0);
- //大小
- myShapes[n].Width = 10;
- myShapes[n].Height = 10;
- myShapes[n].HorizontalAlignment = HorizontalAlignment.Left;
- myShapes[n].VerticalAlignment = VerticalAlignment.Top;
- //加入可视化树
- this.LayoutRoot.Children.Add(myShapes[n]);
- }
- }
- /// <summary>
- /// 初始化动画
- /// </summary>
- private void InitAnimation()
- {
- story.Children.Clear();
- for (int i = 0; i < shapesCount; i++)
- {
- int mSecond = rand.Next(0, 5);
- //透明度
- DoubleAnimation opacityAnimate = new DoubleAnimation();
- opacityAnimate.From = 1.0;
- opacityAnimate.To = 0.0;
- Storyboard.SetTarget(opacityAnimate, myShapes[i]);
- Storyboard.SetTargetProperty(opacityAnimate,
- new PropertyPath("Opacity"));
- opacityAnimate.Duration = new Duration(TimeSpan.FromSeconds(mSecond));
- opacityAnimate.RepeatBehavior = RepeatBehavior.Forever;
- //将时间线添加到情节摘要
- story.Children.Add(opacityAnimate);
- }
- }
- }
- }
Silverlight之我见——制作星星闪烁动画的更多相关文章
- JS框架_(JQuery.js)夜晚天空满天星星闪烁动画
百度云盘 传送门 密码:xftr 满天星星闪烁动画效果: (可用星空动画来作为页面背景,白色文字改为文章或者其他的O(∩_∩)O) <!doctype html> <html> ...
- 原生js实现星星闪烁的效果
星星闪烁的原理其实很简单: html代码: <body style="background:#000"> <div id="stars_box" ...
- 推荐几款制作网页滚动动画的 JavaScript 库
这里集合了几款很棒的制作网页滚动动画的 JavaScript 库和插件.它们中,有的可以帮助你在页面滚动的时候添加动感的元素动画,有的则是实现目前非常流行的全屏页面切换动画.相信借助这些插件,你也可以 ...
- 理论制作 Windows 开机动画
第一次接触 Windows 开机动画是 2012 年,那时候魔方的版本号还是 3.12,魔方里面有个很酷炫狂霸拽的功能就是替换 Windows 7 的开机动画.一开始我是在IT之家论坛里下载开机动画, ...
- 怎么实现类似星星闪烁的效果(box-shadow)
有时候设计希望我们能够在页面实现类似星星闪烁的效果,如图: 我的解决办法是用box-shadow: html <div class="star04 active-blink" ...
- 【Unity 3D】使用 2DToolkit 插件 制作2D精灵动画
话说博客传图也太麻烦了吧,一个一个文件一个一个传....为什么不能直接粘贴了,自动上传呢... 刚直接粘贴了,结果一张图没有,又重新截一次图,在传了一次...真是太**了 好了,吐槽完了,开始博客吧 ...
- StarRatingBar星星切换动画《IT蓝豹》
StarRatingBar星星切换动画 StarRatingBar星星切换动画,很久没有学习一下这个RatingBar了,今天来看看这个RatingBar的动画切换效果,本例子主要是RatingBar ...
- 高逼格UILabel的闪烁动画效果
高逼格UILabel的闪烁动画效果 最终效果图如下: 源码: YXLabel.h 与 YXLabel.m // // YXLabel.h // // Created by YouXianMing o ...
- Canvas制作的下雨动画
简介 在codepen上看到一个Canvas做的下雨效果动画,感觉蛮有意思的.就研究了下,这里来分享下,实现技巧.效果可以见下面的链接. 霓虹雨: http://codepen.io/natewile ...
随机推荐
- Office 365 的公共网站的一些限制及解决的办法
当前的SharePoint Online版本是基于SharePoint 2013的,但是很多功能确被阉割掉了. 下面主要列出Office 365公共网站被限制的功能,以及可绕过的解决方案: 内容类型 ...
- Android - Error: "java.io.IOException: setDataSource failed.: status=0x80000000"
Error: "java.io.IOException: setDataSource failed.: status=0x80000000" 本文地址: http://blog.c ...
- expectation-maximization algorithm ---- PRML读书笔记
An elegant and powerful method for finding maximum likelihood solutions for models with latent varia ...
- Spark之Structured Streaming
目录 Part V. Streaming Stream Processing Fundamentals Structured Streaming Basics Event-Time and State ...
- 最短路径问题(floyd)
http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=1867 #include<stdio.h& ...
- E - Perfect Number
Problem description We consider a positive integer perfect, if and only if the sum of its digits is ...
- strcpy自实现
为了避免strcpy源串覆盖问题(P220),自实现strcpy. #include <stdio.h> #include <string.h> #include <as ...
- mvc action 缓存的清楚更新办法
https://www.cnblogs.com/waynechan/p/3232672.html
- Bootstrap3.0的栅格布局系统实现原理
这个标题取的有点奇怪,怪我翻译的有问题吧.英文学平有限,有道词典和google翻译齐上阵是必须的.还好翻译的不是小说,对于技术文章,还是能勉强翻过来的. 本文主要讲解了Bootstrap3.0的栅格布 ...
- Android studio 添加引用新建类库
1.新建一个工程包 2.修改AndroidManifest.xml 将AndroidManifest.xml 修改为 <manifest xmlns:android="http://s ...