真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用Silverlight怎么實現(xiàn)跑馬燈動畫-創(chuàng)新互聯(lián)

使用Silverlight怎么實現(xiàn)跑馬燈動畫?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

成都創(chuàng)新互聯(lián)公司主要從事成都做網(wǎng)站、成都網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)焦作,十余年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575

主要功能有以下幾點:

1、使用動畫屬性驅(qū)動圖片運動動畫

2、圖片循環(huán)到最后一張后會自動循環(huán)

3、當鼠標放到圖片時運動的圖片會停止,當鼠標離開時暫停的圖片會繼續(xù)運動

4、當鼠標點擊任何一個圖片時,該圖片會顯示真正大小

XAML:


  
    
    
     
    
  
  
 

界面由Grid、Canvas、StackPanel和一個Image組成,Image用來顯示圖片的真實尺寸。

 public partial class Demo : UserControl
  {
    //定義
    private Storyboard storyboard;
    private const double photowidth = 320;
    private double totalwidth;
    public Demo()
    {
      InitializeComponent();
      CreatePhoto();
    }
    /// 
    /// 創(chuàng)建圖片列表
    /// 
    private void CreatePhoto()
    {
      string[] picList = new string[] { "1.jpg", "2.jpg", "3.jpg", "4.jpg", "5.jpg" };
      //創(chuàng)建多組圖片,保證圖片不會出現(xiàn)空白,因為StackPanel是橫向排列的,這樣就可以把圖片類似模擬的排成一圈
      for (int i = 0; i < 3; i++)
      {
        //根據(jù)數(shù)組創(chuàng)建圖片
        for (int j = 0; j < picList.Length; j++)
        {
          UC_pic pic = new UC_pic();
          pic.ImageUrl = "../images/photo/" + picList[j];
          pic.Width = photowidth;
          //綁定事件
          pic.MouseEnter += new MouseEventHandler(pic_MouseEnter);
          pic.MouseLeave += new MouseEventHandler(pic_MouseLeave);
          pic.MouseLeftButtonUp += new MouseButtonEventHandler(pic_MouseLeftButtonUp);
          //添加對象到StackPanel中
          sp.Children.Add(pic);
        }
      }
      //計算圖片的總寬度
      totalwidth = -1.0 * photowidth * picList.Length;
      Canvas.SetLeft(sp, totalwidth);
      //調(diào)用初始化 方法
      CreateStoryboard();
      //播放動畫
      storyboard.Begin();
      //重新繪制區(qū)域
      Resize();
 
    }
    /// 
    /// 創(chuàng)建故事面板
    /// 
    private void CreateStoryboard()
    {
      //創(chuàng)建故事面板
      storyboard = new Storyboard();
      DoubleAnimation animation = new DoubleAnimation();
      //設(shè)置動畫延時
      animation.Duration = new Duration(TimeSpan.FromSeconds(2.0));
      //設(shè)置對象的作用屬性
      Storyboard.SetTarget(animation, sp);
      Storyboard.SetTargetProperty(animation, new PropertyPath("(Canvas.Left)", new object[0]));
      //添加到動畫故事板內(nèi)
      storyboard.Children.Add(animation);
      //動畫自動完成事件
      storyboard.Completed += new EventHandler(storyboard_Completed);
    }
 
    //動畫自動完成事件,當動畫播放完成(結(jié)束)的時候。再次循環(huán)動畫
    void storyboard_Completed(object sender, EventArgs e)
    {
      DoubleAnimation animation = (DoubleAnimation)storyboard.Children[0];
      //取得圖片當前位置
      double left = Canvas.GetLeft(sp);
      //如果圖片已接近最后,就重新設(shè)置位置
      if (left > (totalwidth - photowidth))
      {
        animation.From = new double?(left);
      }
      //設(shè)置動畫的起始值(From)所依據(jù)的總量(總長度)
      animation.By = new double?(totalwidth);
      //循環(huán)動畫
      storyboard.Begin();
    }
    private void Resize()
    {
      //重新繪制顯示區(qū)域
      rg.Rect = new Rect(0, 0, this.ActualWidth, 260);
    }
 
    void pic_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
    {
      //顯示放大圖片
      UC_pic pic = sender as UC_pic;
      img_Full.Source = pic.photo.Source;
      img_Full.Visibility = Visibility.Visible;
    }
 
    void pic_MouseLeave(object sender, MouseEventArgs e)
    {
      //繼續(xù)動畫
      storyboard.Resume();
    }
 
    void pic_MouseEnter(object sender, MouseEventArgs e)
    {
      //暫停動畫
      storyboard.Pause();
    }
 
    private void img_Full_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
    {
      //隱藏放大圖片
      img_Full.Visibility = Visibility.Collapsed;
    }
 
    private void UserControl_SizeChanged(object sender, SizeChangedEventArgs e)
    {
      //動畫根據(jù)屏幕大小改變而改變
      Resize();
    }
}

同時還有一個UserControl用來承載圖片代碼如下:


  

C#:

public partial class UC_pic : UserControl
  {
    public UC_pic()
    {
      InitializeComponent();
    }
    private string _imgUrl;
    public string ImageUrl
    {
      get { return this._imgUrl; }
      set { 
        //設(shè)置圖片資源屬性
        this._imgUrl = value;
        Uri uri = new Uri(value, UriKind.Relative);
        BitmapImage bitimg = new BitmapImage(uri);
        this.photo.Source = bitimg;
      }
    }
  }

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計公司行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計公司的支持。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、網(wǎng)站設(shè)計器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


分享名稱:使用Silverlight怎么實現(xiàn)跑馬燈動畫-創(chuàng)新互聯(lián)
當前網(wǎng)址:http://weahome.cn/article/pcopd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部