实例介绍
AnimationNavigationPage是一个用于Xamarin.Forms的导航页面,它允许开发者自定义页面之间切换时的过渡动画效果。
特点包括设置动画持续时间、选择动画类型(包括空白、推送、淡入淡出、翻转、滑动、滚动、旋转)以及选择动画子类型(默认、从左边、从右边、从顶部、从底部)。
public class App : Application { public App() { InitializeComponent(); MainPage = new AnimationNavigationPage(new StartPage()); } }支持的平台包括Android和iOS。使用该组件需要三个步骤:安装NuGet包、声明AnimationNavigationPage、创建动画页面。通过实现IAnimationPage接口、使用XAML标签(无绑定或有绑定)等方式可以创建动画页面。这提供了一种灵活的方式来丰富应用的用户体验,使页面过渡更加流畅和有趣。
【实例截图】
【核心代码】
文件清单
└── AnimationNavigationPage-889ceb5d1603b08fc1df7c3fbb76be2ec2b7aca5
├── Assets
│ ├── icon.png
│ ├── screenshot1.png
│ └── screenshot2.png
├── Gif
│ ├── Android.gif
│ └── iOS.gif
├── LICENSE
├── nuget
│ ├── AnimationNavigationPage.nuspec
│ └── nuget.exe
├── README.md
└── SourceCode
├── Lib
│ ├── Assets
│ │ ├── asset.png
│ │ ├── icon.png
│ │ ├── screenshot1.png
│ │ ├── screenshot2.png
│ │ └── splash.png
│ └── FormsControls
│ ├── FormsControls.Base
│ │ ├── Controls
│ │ │ ├── Badge.xaml
│ │ │ ├── Badge.xaml.cs
│ │ │ ├── BrandBlock.xaml
│ │ │ └── BrandBlock.xaml.cs
│ │ ├── Effects
│ │ │ └── ColoredEffect.cs
│ │ ├── Enums
│ │ │ ├── AnimationDuration.cs
│ │ │ ├── AnimationSubtype.cs
│ │ │ ├── AnimationType.cs
│ │ │ ├── BadgeType.cs
│ │ │ └── PivotPointLocation.cs
│ │ ├── Extensions
│ │ │ └── ViewExtensions.cs
│ │ ├── FormsControls.Base.csproj
│ │ ├── Helper
│ │ │ ├── RotationParams.cs
│ │ │ ├── ScaleParams.cs
│ │ │ └── UIParams.cs
│ │ ├── Interfaces
│ │ │ ├── IAnimationPage.cs
│ │ │ ├── IDeviceInfo.cs
│ │ │ └── IPageAnimation.cs
│ │ ├── PageAnimations
│ │ │ ├── EmptyPageAnimation.cs
│ │ │ ├── FadePageAnimation.cs
│ │ │ ├── FlipPageAnimation.cs
│ │ │ ├── LandingPageAnimation.cs
│ │ │ ├── PageAnimation.cs
│ │ │ ├── PushPageAnimation.cs
│ │ │ ├── RollPageAnimation.cs
│ │ │ ├── RotatePageAnimation.cs
│ │ │ └── SlidePageAnimation.cs
│ │ └── Pages
│ │ ├── AnimationNavigationPage.cs
│ │ └── AnimationPage.cs
│ ├── FormsControls.Droid
│ │ ├── Effects
│ │ │ └── ColoredSliderEffect.cs
│ │ ├── FormsControls.Droid.csproj
│ │ ├── Helpers
│ │ │ ├── AnimationHelper.cs
│ │ │ ├── AnimationsId.cs
│ │ │ ├── LongAnimationsId.cs
│ │ │ ├── NormalAnimationsId.cs
│ │ │ └── SlowAnimationsId.cs
│ │ ├── Main.cs
│ │ ├── NativeServices
│ │ │ └── DroidDevice.cs
│ │ ├── Properties
│ │ │ ├── AndroidManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ ├── Renderers
│ │ │ ├── AnimationNavigationRenderer.cs
│ │ │ ├── AppCompatAnimationNavRenderer.cs
│ │ │ ├── IXPage.cs
│ │ │ └── XPage.cs
│ │ ├── Resources
│ │ │ ├── AboutResources.txt
│ │ │ ├── animator
│ │ │ │ ├── empty_Animation_long.xml
│ │ │ │ ├── empty_Animation_short.xml
│ │ │ │ ├── empty_Animation.xml
│ │ │ │ ├── enter_from_bottom_bounce.xml
│ │ │ │ ├── enter_from_bottom_long_bounce.xml
│ │ │ │ ├── enter_from_bottom_long.xml
│ │ │ │ ├── enter_from_bottom_short_bounce.xml
│ │ │ │ ├── enter_from_bottom_short.xml
│ │ │ │ ├── enter_from_bottom.xml
│ │ │ │ ├── enter_from_left_bounce.xml
│ │ │ │ ├── enter_from_left_long_bounce.xml
│ │ │ │ ├── enter_from_left_long.xml
│ │ │ │ ├── enter_from_left_short_bounce.xml
│ │ │ │ ├── enter_from_left_short.xml
│ │ │ │ ├── enter_from_left.xml
│ │ │ │ ├── enter_from_right_bounce.xml
│ │ │ │ ├── enter_from_right_long_bounce.xml
│ │ │ │ ├── enter_from_right_long.xml
│ │ │ │ ├── enter_from_right_short_bounce.xml
│ │ │ │ ├── enter_from_right_short.xml
│ │ │ │ ├── enter_from_right.xml
│ │ │ │ ├── enter_from_top_bounce.xml
│ │ │ │ ├── enter_from_top_long_bounce.xml
│ │ │ │ ├── enter_from_top_long.xml
│ │ │ │ ├── enter_from_top_short_bounce.xml
│ │ │ │ ├── enter_from_top_short.xml
│ │ │ │ ├── enter_from_top.xml
│ │ │ │ ├── enter_landing_bounce.xml
│ │ │ │ ├── enter_landing_from_bottom_bounce.xml
│ │ │ │ ├── enter_landing_from_bottom_long_bounce.xml
│ │ │ │ ├── enter_landing_from_bottom_long.xml
│ │ │ │ ├── enter_landing_from_bottom_short_bounce.xml
│ │ │ │ ├── enter_landing_from_bottom_short.xml
│ │ │ │ ├── enter_landing_from_bottom.xml
│ │ │ │ ├── enter_landing_from_left_bounce.xml
│ │ │ │ ├── enter_landing_from_left_long_bounce.xml
│ │ │ │ ├── enter_landing_from_left_long.xml
│ │ │ │ ├── enter_landing_from_left_short_bounce.xml
│ │ │ │ ├── enter_landing_from_left_short.xml
│ │ │ │ ├── enter_landing_from_left.xml
│ │ │ │ ├── enter_landing_from_right_bounce.xml
│ │ │ │ ├── enter_landing_from_right_long_bounce.xml
│ │ │ │ ├── enter_landing_from_right_long.xml
│ │ │ │ ├── enter_landing_from_right_short_bounce.xml
│ │ │ │ ├── enter_landing_from_right_short.xml
│ │ │ │ ├── enter_landing_from_right.xml
│ │ │ │ ├── enter_landing_from_top_bounce.xml
│ │ │ │ ├── enter_landing_from_top_long_bounce.xml
│ │ │ │ ├── enter_landing_from_top_long.xml
│ │ │ │ ├── enter_landing_from_top_short_bounce.xml
│ │ │ │ ├── enter_landing_from_top_short.xml
│ │ │ │ ├── enter_landing_from_top.xml
│ │ │ │ ├── enter_landing_long_bounce.xml
│ │ │ │ ├── enter_landing_long.xml
│ │ │ │ ├── enter_landing_short_bounce.xml
│ │ │ │ ├── enter_landing_short.xml
│ │ │ │ ├── enter_landing.xml
│ │ │ │ ├── enter_roll_from_bottom_bounce.xml
│ │ │ │ ├── enter_roll_from_bottom_long_bounce.xml
│ │ │ │ ├── enter_roll_from_bottom_long.xml
│ │ │ │ ├── enter_roll_from_bottom_short_bounce.xml
│ │ │ │ ├── enter_roll_from_bottom_short.xml
│ │ │ │ ├── enter_roll_from_bottom.xml
│ │ │ │ ├── enter_roll_from_left_bounce.xml
│ │ │ │ ├── enter_roll_from_left_long_bounce.xml
│ │ │ │ ├── enter_roll_from_left_long.xml
│ │ │ │ ├── enter_roll_from_left_short_bounce.xml
│ │ │ │ ├── enter_roll_from_left_short.xml
│ │ │ │ ├── enter_roll_from_left.xml
│ │ │ │ ├── enter_roll_from_right_bounce.xml
│ │ │ │ ├── enter_roll_from_right_long_bounce.xml
│ │ │ │ ├── enter_roll_from_right_long.xml
│ │ │ │ ├── enter_roll_from_right_short_bounce.xml
│ │ │ │ ├── enter_roll_from_right_short.xml
│ │ │ │ ├── enter_roll_from_right.xml
│ │ │ │ ├── enter_roll_from_top_bounce.xml
│ │ │ │ ├── enter_roll_from_top_long_bounce.xml
│ │ │ │ ├── enter_roll_from_top_long.xml
│ │ │ │ ├── enter_roll_from_top_short_bounce.xml
│ │ │ │ ├── enter_roll_from_top_short.xml
│ │ │ │ ├── enter_roll_from_top.xml
│ │ │ │ ├── enter_rotate_bounce.xml
│ │ │ │ ├── enter_rotate_from_bottom_bounce.xml
│ │ │ │ ├── enter_rotate_from_bottom_long_bounce.xml
│ │ │ │ ├── enter_rotate_from_bottom_long.xml
│ │ │ │ ├── enter_rotate_from_bottom_short_bounce.xml
│ │ │ │ ├── enter_rotate_from_bottom_short.xml
│ │ │ │ ├── enter_rotate_from_bottom.xml
│ │ │ │ ├── enter_rotate_from_left_bounce.xml
│ │ │ │ ├── enter_rotate_from_left_long_bounce.xml
│ │ │ │ ├── enter_rotate_from_left_long.xml
│ │ │ │ ├── enter_rotate_from_left_short_bounce.xml
│ │ │ │ ├── enter_rotate_from_left_short.xml
│ │ │ │ ├── enter_rotate_from_left.xml
│ │ │ │ ├── enter_rotate_from_right_bounce.xml
│ │ │ │ ├── enter_rotate_from_right_long_bounce.xml
│ │ │ │ ├── enter_rotate_from_right_long.xml
│ │ │ │ ├── enter_rotate_from_right_short_bounce.xml
│ │ │ │ ├── enter_rotate_from_right_short.xml
│ │ │ │ ├── enter_rotate_from_right.xml
│ │ │ │ ├── enter_rotate_from_top_bounce.xml
│ │ │ │ ├── enter_rotate_from_top_long_bounce.xml
│ │ │ │ ├── enter_rotate_from_top_long.xml
│ │ │ │ ├── enter_rotate_from_top_short_bounce.xml
│ │ │ │ ├── enter_rotate_from_top_short.xml
│ │ │ │ ├── enter_rotate_from_top.xml
│ │ │ │ ├── enter_rotate_long_bounce.xml
│ │ │ │ ├── enter_rotate_long.xml
│ │ │ │ ├── enter_rotate_short_bounce.xml
│ │ │ │ ├── enter_rotate_short.xml
│ │ │ │ ├── enter_rotate.xml
│ │ │ │ ├── enter_scale_bounce.xml
│ │ │ │ ├── enter_scale_from_bottom_bounce.xml
│ │ │ │ ├── enter_scale_from_bottom_long_bounce.xml
│ │ │ │ ├── enter_scale_from_bottom_long.xml
│ │ │ │ ├── enter_scale_from_bottom_short_bounce.xml
│ │ │ │ ├── enter_scale_from_bottom_short.xml
│ │ │ │ ├── enter_scale_from_bottom.xml
│ │ │ │ ├── enter_scale_from_left_bounce.xml
│ │ │ │ ├── enter_scale_from_left_long_bounce.xml
│ │ │ │ ├── enter_scale_from_left_long.xml
│ │ │ │ ├── enter_scale_from_left_short_bounce.xml
│ │ │ │ ├── enter_scale_from_left_short.xml
│ │ │ │ ├── enter_scale_from_left.xml
│ │ │ │ ├── enter_scale_from_right_bounce.xml
│ │ │ │ ├── enter_scale_from_right_long_bounce.xml
│ │ │ │ ├── enter_scale_from_right_long.xml
│ │ │ │ ├── enter_scale_from_right_short_bounce.xml
│ │ │ │ ├── enter_scale_from_right_short.xml
│ │ │ │ ├── enter_scale_from_right.xml
│ │ │ │ ├── enter_scale_from_top_bounce.xml
│ │ │ │ ├── enter_scale_from_top_long_bounce.xml
│ │ │ │ ├── enter_scale_from_top_long.xml
│ │ │ │ ├── enter_scale_from_top_short_bounce.xml
│ │ │ │ ├── enter_scale_from_top_short.xml
│ │ │ │ ├── enter_scale_from_top.xml
│ │ │ │ ├── enter_scale_long_bounce.xml
│ │ │ │ ├── enter_scale_long.xml
│ │ │ │ ├── enter_scale_short_bounce.xml
│ │ │ │ ├── enter_scale_short.xml
│ │ │ │ ├── enter_scale.xml
│ │ │ │ ├── exit_landing_from_bottom_long.xml
│ │ │ │ ├── exit_landing_from_bottom_short.xml
│ │ │ │ ├── exit_landing_from_bottom.xml
│ │ │ │ ├── exit_landing_from_left_long.xml
│ │ │ │ ├── exit_landing_from_left_short.xml
│ │ │ │ ├── exit_landing_from_left.xml
│ │ │ │ ├── exit_landing_from_right_long.xml
│ │ │ │ ├── exit_landing_from_right_short.xml
│ │ │ │ ├── exit_landing_from_right.xml
│ │ │ │ ├── exit_landing_from_top_long.xml
│ │ │ │ ├── exit_landing_from_top_short.xml
│ │ │ │ ├── exit_landing_from_top.xml
│ │ │ │ ├── exit_landing_long.xml
│ │ │ │ ├── exit_landing_short.xml
│ │ │ │ ├── exit_landing.xml
│ │ │ │ ├── exit_roll_to_bottom_long.xml
│ │ │ │ ├── exit_roll_to_bottom_short.xml
│ │ │ │ ├── exit_roll_to_bottom.xml
│ │ │ │ ├── exit_roll_to_left_long.xml
│ │ │ │ ├── exit_roll_to_left_short.xml
│ │ │ │ ├── exit_roll_to_left.xml
│ │ │ │ ├── exit_roll_to_right_long.xml
│ │ │ │ ├── exit_roll_to_right_short.xml
│ │ │ │ ├── exit_roll_to_right.xml
│ │ │ │ ├── exit_roll_to_top_long.xml
│ │ │ │ ├── exit_roll_to_top_short.xml
│ │ │ │ ├── exit_roll_to_top.xml
│ │ │ │ ├── exit_rotate_long.xml
│ │ │ │ ├── exit_rotate_short.xml
│ │ │ │ ├── exit_rotate_to_bottom_long.xml
│ │ │ │ ├── exit_rotate_to_bottom_short.xml
│ │ │ │ ├── exit_rotate_to_bottom.xml
│ │ │ │ ├── exit_rotate_to_left_long.xml
│ │ │ │ ├── exit_rotate_to_left_short.xml
│ │ │ │ ├── exit_rotate_to_left.xml
│ │ │ │ ├── exit_rotate_to_right_long.xml
│ │ │ │ ├── exit_rotate_to_right_short.xml
│ │ │ │ ├── exit_rotate_to_right.xml
│ │ │ │ ├── exit_rotate_to_top_long.xml
│ │ │ │ ├── exit_rotate_to_top_short.xml
│ │ │ │ ├── exit_rotate_to_top.xml
│ │ │ │ ├── exit_rotate.xml
│ │ │ │ ├── exit_scale_from_bottom_long.xml
│ │ │ │ ├── exit_scale_from_bottom_short.xml
│ │ │ │ ├── exit_scale_from_bottom.xml
│ │ │ │ ├── exit_scale_from_left_long.xml
│ │ │ │ ├── exit_scale_from_left_short.xml
│ │ │ │ ├── exit_scale_from_left.xml
│ │ │ │ ├── exit_scale_from_right_long.xml
│ │ │ │ ├── exit_scale_from_right_short.xml
│ │ │ │ ├── exit_scale_from_right.xml
│ │ │ │ ├── exit_scale_from_top_long.xml
│ │ │ │ ├── exit_scale_from_top_short.xml
│ │ │ │ ├── exit_scale_from_top.xml
│ │ │ │ ├── exit_scale_long.xml
│ │ │ │ ├── exit_scale_short.xml
│ │ │ │ ├── exit_scale.xml
│ │ │ │ ├── exit_to_bottom_bounce.xml
│ │ │ │ ├── exit_to_bottom_long_bounce.xml
│ │ │ │ ├── exit_to_bottom_long.xml
│ │ │ │ ├── exit_to_bottom_short_bounce.xml
│ │ │ │ ├── exit_to_bottom_short.xml
│ │ │ │ ├── exit_to_bottom.xml
│ │ │ │ ├── exit_to_left_bounce.xml
│ │ │ │ ├── exit_to_left_long_bounce.xml
│ │ │ │ ├── exit_to_left_long.xml
│ │ │ │ ├── exit_to_left_short_bounce.xml
│ │ │ │ ├── exit_to_left_short.xml
│ │ │ │ ├── exit_to_left.xml
│ │ │ │ ├── exit_to_right_bounce.xml
│ │ │ │ ├── exit_to_right_long_bounce.xml
│ │ │ │ ├── exit_to_right_long.xml
│ │ │ │ ├── exit_to_right_short_bounce.xml
│ │ │ │ ├── exit_to_right_short.xml
│ │ │ │ ├── exit_to_right.xml
│ │ │ │ ├── exit_to_top_bounce.xml
│ │ │ │ ├── exit_to_top_long_bounce.xml
│ │ │ │ ├── exit_to_top_long.xml
│ │ │ │ ├── exit_to_top_short_bounce.xml
│ │ │ │ ├── exit_to_top_short.xml
│ │ │ │ └── exit_to_top.xml
│ │ │ └── values
│ │ │ └── settings.xml
│ │ └── Utils
│ │ ├── AppCompatNavRendererHelper.cs
│ │ └── PageExtensions.cs
│ ├── FormsControls.sln
│ └── FormsControls.Touch
│ ├── Delegates
│ │ ├── GestureRecognizerDelegate.cs
│ │ └── NavigationControllerDelegate.cs
│ ├── Effects
│ │ └── ColoredSliderEffect.cs
│ ├── FormsControls.Touch.csproj
│ ├── Helpers
│ │ └── AnimationHelper.cs
│ ├── Main.cs
│ ├── NativeServices
│ │ └── AppleDevice.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Renderers
│ │ └── AnimationNavigationRenderer.cs
│ ├── Transitions
│ │ ├── AnimatedTransition.cs
│ │ └── DefaultTransition.cs
│ └── Utils
│ └── ViewExtensions.cs
└── Samples
├── Samlpe.sln
├── Sample.Base
│ ├── Appication.xaml
│ ├── Appication.xaml.cs
│ ├── Behaviors
│ │ ├── BehaviorBase.cs
│ │ └── EventToCommandBehavior.cs
│ ├── Models
│ │ ├── SampleGroup.cs
│ │ └── SingleSample.cs
│ ├── Pages
│ │ ├── EmptyAnimationsPage.xaml
│ │ ├── EmptyAnimationsPage.xaml.cs
│ │ ├── HomePage.xaml
│ │ ├── HomePage.xaml.cs
│ │ ├── NoAnimationPage.xaml
│ │ ├── NoAnimationPage.xaml.cs
│ │ ├── RootPage.xaml
│ │ ├── RootPage.xaml.cs
│ │ ├── SamplePage.xaml
│ │ ├── SamplePage.xaml.cs
│ │ ├── SamplesPage.xaml
│ │ ├── SamplesPage.xaml.cs
│ │ ├── SideMenuPage.xaml
│ │ └── SideMenuPage.xaml.cs
│ ├── Sample.csproj
│ ├── Templates
│ │ ├── SideMenuGroupHeaderTemplate.xaml
│ │ ├── SideMenuGroupHeaderTemplate.xaml.cs
│ │ ├── SideMenuItemTemplate.xaml
│ │ └── SideMenuItemTemplate.xaml.cs
│ ├── Utils
│ │ ├── Constants.cs
│ │ └── Utils.cs
│ └── ViewModels
│ ├── AnimationPageViewModel.cs
│ └── SamplesViewModel.cs
├── Sample.Droid
│ ├── Assets
│ │ ├── AboutAssets.txt
│ │ └── fontawesome-webfont.ttf
│ ├── MainActivity.cs
│ ├── packages.config
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── drawable
│ │ │ ├── deviceArt.png
│ │ │ ├── hamburguer_icon.png
│ │ │ ├── icon.png
│ │ │ ├── logo.png
│ │ │ ├── phone.png
│ │ │ └── splash_screen.png
│ │ ├── drawable-hdpi
│ │ │ ├── hamburguer_icon.png
│ │ │ ├── icon.png
│ │ │ ├── phone.png
│ │ │ └── splash_screen.png
│ │ ├── drawable-xhdpi
│ │ │ ├── hamburguer_icon.png
│ │ │ ├── icon.png
│ │ │ ├── phone.png
│ │ │ └── splash_screen.png
│ │ ├── drawable-xxhdpi
│ │ │ ├── hamburguer_icon.png
│ │ │ ├── icon.png
│ │ │ ├── phone.png
│ │ │ └── splash_screen.png
│ │ ├── layout
│ │ │ ├── Tabbar.axml
│ │ │ └── Toolbar.axml
│ │ ├── Resource.designer.cs
│ │ ├── values
│ │ │ ├── Colors.xml
│ │ │ └── Styles.xml
│ │ └── values-v21
│ │ └── Styles.xml
│ ├── Sample.Droid.csproj
│ ├── Screenshots
│ │ └── Android.gif
│ └── SplashActivity.cs
└── Sample.iOS
├── AppDelegate.cs
├── Entitlements.plist
├── Info.plist
├── Main.cs
├── packages.config
├── Resources
│ ├── fontawesome-webfont.ttf
│ ├── hamburguer_icon@2x.png
│ ├── hamburguer_icon@3x.png
│ ├── Images.xcassets
│ │ ├── AppIcons.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── icon_120.png
│ │ │ ├── icon_152.png
│ │ │ ├── icon_167.png
│ │ │ ├── icon_180.png
│ │ │ ├── icon_29.png
│ │ │ ├── icon_40.png
│ │ │ ├── icon_58.png
│ │ │ ├── icon_76.png
│ │ │ ├── icon_80.png
│ │ │ └── icon_87.png
│ │ └── LaunchImage.launchimage
│ │ ├── Contents.json
│ │ ├── Splash_1136.png
│ │ ├── Splash_1334.png
│ │ ├── Splash_2208.png
│ │ └── Splash_960.png
│ ├── logo@2x.png
│ ├── logo@3x.png
│ ├── phone@2x.png
│ └── phone@3x.png
└── Sample.iOS.csproj
61 directories, 390 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论