screenstates.as

来自「flex 实现的一个showcase 喜欢flex的朋友可以」· AS 代码 · 共 52 行

AS
52
字号
package com.flexShowcase.constants {
	
	
	//////////////////////////////////////////////////
	//class
	
	public class ScreenStates {
		
		
		//////////////////////////////////////////////////
		//public static variables
		
		
		//main--------------------------------------------
		
		public static const PRELOADER_SCREEN:String = "preloaderScreenState";
		public static const FRONTEND_SCREEN:String = "frontendScreenState";
		public static const BACKEND_SCREEN:String = "backendScreenState";
		
		
		//preloader---------------------------------------
		
		public static const PRELOADER_OPEN:String = "preloaderOpenState";
		public static const PRELOADER_CLOSED:String = "preloaderClosedState";
		
		
		//navigation--------------------------------------
		
		public static const TAGS_PANEL_OPEN:String = "tagsPanelOpenState";
		public static const TAGS_PANEL_CLOSED:String = "tagsPanelClosedState";
		
		
		//frontend----------------------------------------
		
		public static const PROJECT_LIST_MAXIMIZED:String = "projectListMaximizedState";
		public static const PROJECT_LIST_MINIMIZED:String = "projectListMinimizedState";
		
		public static const FEATURED_PROJECTS:String = "featuredProjectsState";
		
		
		//tagsPanel---------------------------------------
		
		public static const ALL_TAGS:String = "allTagsState";
		public static const DEVELOPER_TAGS:String = "developerTagsState";
		
		
		//backend-----------------------------------------
		
		public static const LOGGED_IN:String = "loggedInState";
		public static const LOGGED_OUT:String = "loggedOutState";
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?