一个高仿QQ一关机就到登录界面面,至于要钱吗

Ex_Ui高仿QQ登录界面(含H5动画)
需要的DLL链接:http://pan.baidu.com/s/1skL1x4D 密码:tlat
Ex_Ui支持库 &链接:http://pan.baidu.com/s/1nvv0EHb 密码:jp5i
转自精易论坛
玖爱辅助网 - 本站版权及附件下载说明
1、本站所有文章均由凌哥发布,与同时享有本文章相关版权
2、同类型的网站与软件站 在转载本站原创软件时请注明软件来源:
3、如果您在下载本站的软件/教程出现任何问题可以: 4、本文链接:百度收录:
上一篇:下一篇:
易语言源码 - 最新内容
用户:汤圆传媒工作室 发表评论:666 评论时间: 23:43用户:卢忠鑫 发表评论:有什么卵用么?
评论时间: 19:00用户:........ 发表评论:沙发
评论时间: 21:043
最新软件推荐
随机内容推荐
& 玖爱辅助网.&&&页面执行时间:0.020001秒&&&消耗内存:4.74MB&&&查询数据库:2次
&&&&&Server by&&&&Themes&(多次修改)&&&Powered by emlog给 TextBox文本框前添加图片
扩展PhoneTextBox:添加一个类“ExtentPhoneTextBox”继承 PhoneTextBox ,在“ExtentPhoneTextBox”类中添加属性项:
public class ExtentPhoneTextBox : PhoneTextBox
/// &summary&
/// 文本框图片属性
/// &/summary&
public static readonly DependencyProperty TextHeadImageProperty =
DependencyProperty.Register(&TextHeadImage&, typeof(ImageSource), typeof(ExtentPhoneTextBox), new PropertyMetadata(null)
/// &summary&
/// 文本框头图片
/// &/summary&
public ImageSource TextHeadImage
get { return base.GetValue(TextHeadImageProperty) as ImageSource; }
set { base.SetValue(TextHeadImageProperty, value); }
/// &summary&
/// 文本图片宽度
/// &/summary&
public double TextHeadImageWidth
get { return (double)GetValue(TextHeadImageWidthProperty); }
set { SetValue(TextHeadImageWidthProperty, value); }
// Using a DependencyProperty as the backing store for TextHeadImageWidth.
This enables animation, styling, binding, etc...
public static readonly DependencyProperty TextHeadImageWidthProperty =
DependencyProperty.Register(&TextHeadImageWidth&, typeof(double), typeof(ExtentPhoneTextBox), new PropertyMetadata(null));
/// &summary&
/// 文本图片高度
/// &/summary&
public double TextHeadImageHeight
get { return (double)GetValue(TextHeadImageHeightProperty); }
set { SetValue(TextHeadImageHeightProperty, value); }
// Using a DependencyProperty as the backing store for TextHeadImageHeight.
This enables animation, styling, binding, etc...
public static readonly DependencyProperty TextHeadImageHeightProperty =
DependencyProperty.Register(&TextHeadImageHeight&, typeof(double), typeof(ExtentPhoneTextBox), new PropertyMetadata(null));
ExtentPhoneText 样式编辑:
全部样式如下:
&DataTemplate x:Key=&ControlHeaderTemplate&&
&TextBlock FontSize=&{StaticResource PhoneFontSizeNormal}& FontFamily=&{StaticResource PhoneFontFamilyNormal}& LineStackingStrategy=&BlockLineHeight& LineHeight=&23.333& Margin=&0,-9,0,0& TextWrapping=&Wrap& Text=&{Binding}&&
&TextBlock.RenderTransform&
&TranslateTransform X=&-1& Y=&4&/&
&/TextBlock.RenderTransform&
&/TextBlock&
&/DataTemplate&
&toolkit:SingleDataTemplateSelector x:Key=&ControlHeaderTemplateSelector& Template=&{StaticResource ControlHeaderTemplate}&/&
&Style x:Key=&ExtentPhoneTextBoxStyle& TargetType=&ExtentCtrs:ExtentPhoneTextBox&&
&Setter Property=&FontFamily& Value=&{StaticResource PhoneFontFamilyNormal}&/&
&Setter Property=&FontSize& Value=&{StaticResource PhoneFontSizeMediumLarge}&/&
&Setter Property=&Background& Value=&{StaticResource PhoneTextBoxBrush}&/&
&Setter Property=&Foreground& Value=&{StaticResource PhoneTextBoxForegroundBrush}&/&
&Setter Property=&BorderBrush& Value=&{StaticResource PhoneTextBoxBrush}&/&
&Setter Property=&SelectionBackground& Value=&{StaticResource PhoneAccentBrush}&/&
&Setter Property=&SelectionForeground& Value=&{StaticResource PhoneTextBoxSelectionForegroundBrush}&/&
&Setter Property=&BorderThickness& Value=&{StaticResource PhoneBorderThickness}&/&
&Setter Property=&Padding& Value=&6,0,6,4&/&
&Setter Property=&HorizontalContentAlignment& Value=&Left&/&
&Setter Property=&Template&&
&Setter.Value&
&ControlTemplate TargetType=&ExtentCtrs:ExtentPhoneTextBox&&
&Grid x:Name=&RootGrid& Background=&Transparent&&
&Grid.RowDefinitions&
&RowDefinition Height=&Auto&/&
&RowDefinition/&
&/Grid.RowDefinitions&
&VisualStateManager.VisualStateGroups&
&VisualStateGroup x:Name=&CommonStates&&
&VisualState x:Name=&Normal&/&
&VisualState x:Name=&Disabled&&
&Storyboard&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Foreground& Storyboard.TargetName=&Header&&
&DiscreteObjectKeyFrame KeyTime=&0& Value=&{StaticResource PhoneTextLowContrastBrush}&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Background& Storyboard.TargetName=&MainBorder&&
&DiscreteObjectKeyFrame KeyTime=&0& Value=&Transparent&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&BorderBrush& Storyboard.TargetName=&MainBorder&&
&DiscreteObjectKeyFrame KeyTime=&0& Value=&{StaticResource PhoneDisabledBrush}&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Foreground& Storyboard.TargetName=&ContentElement&&
&DiscreteObjectKeyFrame KeyTime=&0& Value=&{StaticResource PhoneDisabledBrush}&/&
&/ObjectAnimationUsingKeyFrames&
&/Storyboard&
&/VisualState&
&VisualState x:Name=&ReadOnly&&
&Storyboard&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Visibility& Storyboard.TargetName=&MainBorder&&
&DiscreteObjectKeyFrame KeyTime=&0&&
&DiscreteObjectKeyFrame.Value&
&Visibility&Collapsed&/Visibility&
&/DiscreteObjectKeyFrame.Value&
&/DiscreteObjectKeyFrame&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Visibility& Storyboard.TargetName=&ReadonlyBorder&&
&DiscreteObjectKeyFrame KeyTime=&0&&
&DiscreteObjectKeyFrame.Value&
&Visibility&Visible&/Visibility&
&/DiscreteObjectKeyFrame.Value&
&/DiscreteObjectKeyFrame&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Background& Storyboard.TargetName=&ReadonlyBorder&&
&DiscreteObjectKeyFrame KeyTime=&0& Value=&{StaticResource PhoneTextBoxBrush}&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&BorderBrush& Storyboard.TargetName=&ReadonlyBorder&&
&DiscreteObjectKeyFrame KeyTime=&0& Value=&{StaticResource PhoneTextBoxBrush}&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Foreground& Storyboard.TargetName=&ContentElement&&
&DiscreteObjectKeyFrame KeyTime=&0& Value=&{StaticResource PhoneTextBoxReadOnlyBrush}&/&
&/ObjectAnimationUsingKeyFrames&
&/Storyboard&
&/VisualState&
&/VisualStateGroup&
&VisualStateGroup x:Name=&FocusStates&&
&VisualState x:Name=&Focused&&
&Storyboard&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Background& Storyboard.TargetName=&MainBorder&&
&DiscreteObjectKeyFrame KeyTime=&0& Value=&{StaticResource PhoneTextBoxEditBackgroundBrush}&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&BorderBrush& Storyboard.TargetName=&MainBorder&&
&DiscreteObjectKeyFrame KeyTime=&0& Value=&{StaticResource PhoneTextBoxEditBorderBrush}&/&
&/ObjectAnimationUsingKeyFrames&
&/Storyboard&
&/VisualState&
&VisualState x:Name=&Unfocused&/&
&/VisualStateGroup&
&VisualStateGroup x:Name=&LengthIndicatorStates&&
&VisualStateGroup.Transitions&
&VisualTransition From=&LengthIndicatorHidden& To=&LengthIndicatorVisible&&
&Storyboard&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Visibility& Storyboard.TargetName=&LengthIndicator&&
&DiscreteObjectKeyFrame KeyTime=&0:0:0&&
&DiscreteObjectKeyFrame.Value&
&Visibility&Visible&/Visibility&
&/DiscreteObjectKeyFrame.Value&
&/DiscreteObjectKeyFrame&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Margin& Storyboard.TargetName=&RootGrid&&
&DiscreteObjectKeyFrame KeyTime=&0:0:0& Value=&0, 0, 0, 25&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Opacity& Storyboard.TargetName=&LengthIndicator&&
&DiscreteObjectKeyFrame KeyTime=&0:0:0& Value=&1&/&
&/ObjectAnimationUsingKeyFrames&
&DoubleAnimation Duration=&0:0:0.350& To=&27& Storyboard.TargetProperty=&(UIElement.RenderTransform).(TranslateTransform.Y)& Storyboard.TargetName=&LengthIndicator&&
&DoubleAnimation.EasingFunction&
&ExponentialEase Exponent=&6&/&
&/DoubleAnimation.EasingFunction&
&/DoubleAnimation&
&/Storyboard&
&/VisualTransition&
&VisualTransition From=&LengthIndicatorVisible& To=&LengthIndicatorHidden&&
&Storyboard&
&DoubleAnimation Duration=&0:0:0.350& To=&0& Storyboard.TargetProperty=&(UIElement.RenderTransform).(TranslateTransform.Y)& Storyboard.TargetName=&LengthIndicator&&
&DoubleAnimation.EasingFunction&
&ExponentialEase Exponent=&6&/&
&/DoubleAnimation.EasingFunction&
&/DoubleAnimation&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Margin& Storyboard.TargetName=&RootGrid&&
&DiscreteObjectKeyFrame KeyTime=&0:0:0& Value=&0, 0, 0, 0&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Opacity& Storyboard.TargetName=&LengthIndicator&&
&DiscreteObjectKeyFrame KeyTime=&0:0:0.350& Value=&0&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Visibility& Storyboard.TargetName=&LengthIndicator&&
&DiscreteObjectKeyFrame KeyTime=&0:0:0.350&&
&DiscreteObjectKeyFrame.Value&
&Visibility&Collapsed&/Visibility&
&/DiscreteObjectKeyFrame.Value&
&/DiscreteObjectKeyFrame&
&/ObjectAnimationUsingKeyFrames&
&/Storyboard&
&/VisualTransition&
&/VisualStateGroup.Transitions&
&VisualState x:Name=&LengthIndicatorVisible&&
&Storyboard&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Visibility& Storyboard.TargetName=&LengthIndicator&&
&DiscreteObjectKeyFrame KeyTime=&0:0:0&&
&DiscreteObjectKeyFrame.Value&
&Visibility&Visible&/Visibility&
&/DiscreteObjectKeyFrame.Value&
&/DiscreteObjectKeyFrame&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Margin& Storyboard.TargetName=&RootGrid&&
&DiscreteObjectKeyFrame KeyTime=&0:0:0& Value=&0, 0, 0, 25&/&
&/ObjectAnimationUsingKeyFrames&
&ObjectAnimationUsingKeyFrames Storyboard.TargetProperty=&Opacity& Storyboard.TargetName=&LengthIndicator&&
&DiscreteObjectKeyFrame KeyTime=&0:0:0& Value=&1&/&
&/ObjectAnimationUsingKeyFrames&
&DoubleAnimation Duration=&0& To=&27& Storyboard.TargetProperty=&(UIElement.RenderTransform).(TranslateTransform.Y)& Storyboard.TargetName=&LengthIndicator&/&
&/Storyboard&
&/VisualState&
&VisualState x:Name=&LengthIndicatorHidden&/&
&/VisualStateGroup&
&/VisualStateManager.VisualStateGroups&
&toolkit:PhoneContentControl x:Name=&Header& ContentTemplate=&{TemplateBinding HeaderTemplate}& ContentTemplateSelector=&{StaticResource ControlHeaderTemplateSelector}& Content=&{TemplateBinding Header}& Foreground=&{StaticResource PhoneTextMidContrastBrush}& FontSize=&{StaticResource PhoneFontSizeNormal}& FontFamily=&{StaticResource PhoneFontFamilyNormal}& HorizontalContentAlignment=&{TemplateBinding HorizontalContentAlignment}& Margin=&{StaticResource PhoneHorizontalMargin}&/&
&Border x:Name=&LengthIndicatorBorder& Grid.Row=&1&&
&TextBlock x:Name=&LengthIndicator& CacheMode=&BitmapCache& Foreground=&{StaticResource PhoneTextMidContrastBrush}& FontSize=&{StaticResource PhoneFontSizeNormal}& FontFamily=&{StaticResource PhoneFontFamilyNormal}& HorizontalAlignment=&Right& Margin=&{StaticResource PhoneMargin}& Opacity=&0& TextAlignment=&Right& Visibility=&Collapsed& VerticalAlignment=&Bottom&&
&TextBlock.RenderTransform&
&TranslateTransform/&
&/TextBlock.RenderTransform&
&/TextBlock&
&Border x:Name=&MainBorder& BorderBrush=&{TemplateBinding BorderBrush}& BorderThickness=&{TemplateBinding BorderThickness}& Background=&{TemplateBinding Background}& Margin=&{StaticResource PhoneTouchTargetOverhang}& Grid.Row=&1&&
&TextBlock x:Name=&PlaceholderTextElement& Foreground=&{StaticResource PhoneTextBoxReadOnlyBrush}& HorizontalAlignment=&Left& Padding=&{TemplateBinding Padding}& Text=&{TemplateBinding PlaceholderText}& VerticalAlignment=&Center& Margin=&40,2,0,2&/&
&Border x:Name=&ReadonlyBorder& BorderBrush=&{StaticResource PhoneDisabledBrush}& BorderThickness=&{TemplateBinding BorderThickness}& Background=&Transparent& Margin=&{StaticResource PhoneTouchTargetOverhang}& Grid.Row=&1& Visibility=&Collapsed&/&
&Border BorderBrush=&Transparent& BorderThickness=&{TemplateBinding BorderThickness}& Background=&Transparent& Margin=&{StaticResource PhoneTouchTargetOverhang}& Grid.Row=&1&&
&StackPanel Orientation=&Horizontal&&
&Image Source=&{TemplateBinding TextHeadImage}& Width=&{TemplateBinding TextHeadImageWidth}& Height=&{TemplateBinding TextHeadImageWidth}& HorizontalAlignment=&Left& Margin=&12,2,1,2&/&
&ContentControl x:Name=&ContentElement& BorderThickness=&0& CacheMode=&BitmapCache& HorizontalContentAlignment=&Stretch& Padding=&{TemplateBinding Padding}& VerticalContentAlignment=&Stretch& VerticalAlignment=&Center&/&
&/StackPanel&
&toolkitPrimitives:TiltUserControl HorizontalAlignment=&Right& Margin=&0,0,-12,0& Grid.Row=&1& VerticalAlignment=&Bottom&&
&Border x:Name=&ActionIconBorder& Background=&Transparent& Height=&72& Width=&96&&
&Image x:Name=&ActionIcon& HorizontalAlignment=&Right& Height=&26& Margin=&0,0,36,0& Source=&{TemplateBinding ActionIcon}&/&
&/toolkitPrimitives:TiltUserControl&
&TextBlock x:Name=&MeasurementTextBlock& FontWeight=&{TemplateBinding FontWeight}& FontStyle=&{TemplateBinding FontStyle}& FontStretch=&{TemplateBinding FontStretch}& FontSize=&{TemplateBinding FontSize}& FontFamily=&{TemplateBinding FontFamily}& IsHitTestVisible=&False& Margin=&8& Opacity=&0& Grid.Row=&1& TextAlignment=&{TemplateBinding TextAlignment}& TextWrapping=&{TemplateBinding TextWrapping}& Text=&{TemplateBinding Text}&/&
&/ControlTemplate&
&/Setter.Value&
UI部局xaml代码如下:
&Grid x:Name=&ContentPanel&
Margin=&0,162,24,19&
Grid.RowSpan=&2&&
&ExtentCtrs:ExtentPhoneTextBox
Margin=&12,10,12,0&
TextWrapping=&Wrap&
VerticalAlignment=&Top&
PlaceholderText=&QQ号码/手机/邮箱&
Height=&80&
Background=&White& TextHeadImage=&/Assets/QqAccount.WVGA.png& Style=&{StaticResource ExtentPhoneTextBoxStyle}& TextHeadImageHeight=&22& TextHeadImageWidth=&24& /&
&ExtentCtrs:ExtentPhoneTextBox
Margin=&12,107,12,0&
TextWrapping=&Wrap&
VerticalAlignment=&Top&
PlaceholderText=&点击输入QQ密码&
Height=&80&
Background=&White& Style=&{StaticResource ExtentPhoneTextBoxStyle}& TextHeadImage=&/Assets/Password.WVGA.png& TextHeadImageHeight=&22& TextHeadImageWidth=&24& /&
&toolkitPrimitives:PhonePasswordBoxCheckBox Content=&记住密码&
HorizontalAlignment=&Left&
Margin=&12,195,0,0&
VerticalAlignment=&Top&
HorizontalContentAlignment=&Left& /&
&toolkitPrimitives:PhonePasswordBoxCheckBox Content=&隐身登录&
HorizontalAlignment=&Left&
Margin=&224,195,0,0&
VerticalAlignment=&Top& /&
&toolkitPrimitives:PhonePasswordBoxCheckBox Content=&静音登录&
HorizontalAlignment=&Left&
Margin=&12,272,0,0&
VerticalAlignment=&Top& /&
&HyperlinkButton Content=&注册帐号&
HorizontalAlignment=&Left&
Margin=&12,349,0,0&
VerticalAlignment=&Top&
HorizontalContentAlignment=&Left& /&
&HyperlinkButton Content=&找回密码&
HorizontalAlignment=&Left&
Margin=&12,385,0,0&
VerticalAlignment=&Top&
HorizontalContentAlignment=&Left& /&
运行效果如下:
阅读(...) 评论()
/*快速评论*/
#div_digg {
bottom: 10
border: 2px solid #ECD7B1;
padding: 10
width: 140
background-color: #
border-radius: 5px 5px 5px 5px !
box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
不知道为什么页面加载完成时还读不到div_digg。可能也是动态生成的。
所以这里只能用定时器 不断的读取,当读取到了再给它动态添加快捷按钮
//自定义 定时器[当元素加载完成是执行回调函数]
function customTimer(inpId,fn) {
if ($(inpId).length) {
var intervalId = setInterval(function () {
if ($(inpId).length) {
//如果存在了
clearInterval(intervalId);
// 则关闭定时器
customTimer(inpId,fn);
//执行自身
//页面加载完成是执行
$(function () {
customTimer("#div_digg", function () {
var div_html = "\
$("#div_digg").append(div_html);
//tbCommentBody瑞星:QQ大盗高仿登录界面用户难辨真伪
据瑞星“云安全”系统统计,本周瑞星共截获了824779个钓鱼网站,共有367万网民遭遇钓鱼网站攻击。瑞星本周截获了一个专门盗取软件账号密码的木马病毒——“QQ大盗木马”。病毒通过高仿QQ图标、登录界面使用户上当,一旦用户运行病毒,在假冒登录界面输入后,账号密码就会被盗,从而导致个人隐私被窃取、经济利益受损,甚至QQ好友还会遭到黑客欺诈。本周关注病毒:“Trojan.PSW.Win32.QQPass.fjy(QQ大盗木马)”警惕程度 ★★★★木马运行后,首先检测电脑是否正在运行QQ,如果存在,木马会关闭QQ,并将病毒文件替换成QQ程序,当用户再次打开QQ时,就会自动运行木马病毒。被替换的“QQ”从图标上和登录界面上都与正常程序极为相似,用户很难分辨真伪。防范方法:1.使用永久免费的“瑞星全功能安全软件2011”,彻底查杀此病毒;2.开启瑞星2011的智能安全防护功能,有效保护电脑不被病毒入侵,拦截钓鱼网站攻击;3.同时可拨打客服热线400-660-8866咨询,访问客户服务中心网站(http://csc.rising.com.cn)寻求帮助,使用在线专家门诊获得即时支持。
免责声明:本文仅代表作者个人观点,与凤凰网无关。其原创性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
用手机随时随地看新闻
独家独到独立
凤凰网个人中心
请先登录再进行操作
记住登录状态
所有评论仅代表网友意见,凤凰网保持中立
&同步到微博
04/21 07:02
04/21 07:02
04/21 07:02
04/21 06:49
04/21 11:28
03/09 16:46
02/24 09:56
03/09 16:45
03/09 16:45
02/27 16:10
03/13 08:17
03/12 08:43
03/12 07:22
03/12 07:57
03/20 09:48
09/07 09:38
09/07 09:38
09/07 09:39
09/07 09:39
09/07 09:39
48小时点击排行
财经 · 房产
娱乐 · 时尚
汽车 · 旅游
科技 · 健康涓婁紶鍙戝竷
禄 Android楂樹豢寰?俊鐣岄潰
Android楂樹豢寰?俊鐣岄潰
鎵}

我要回帖

更多关于 吃鸡一直卡在登录界面 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信