Smile

…to Remember, …to Forget

Browsing Posts in DesignTech

With Windows 10, there is a setting in windows system to reduce the motion/animation for users. >system settings > ease of access > display > show motion in windows > ON/OFF ON: animate.css is functioning (ver > 3.7.0)https://daneden.github.io/animate.css/ OFF: animate.css is not functioning Hey! It seems that you have animations disabled on your OS, turning Animate.css […]

Jquery – The write less, do more javascript library has all sorts of different code samples that do a wide variety of things. Today, we’ll be looking at different Jquery Slideshow applications that can be used to diversify your homepage, content, or anywhere that is big enough to display an image.

http://www.w3schools.com/Ajax/default.asp

var mymenu:ContextMenu=new ContextMenu(); mymenu.hideBuiltInItems(); var txt:String=”Designed by: full.com.hk”; var item:ContextMenuItem=new ContextMenuItem(txt) mymenu.customItems.push(item); item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,item_select); function item_select(e:ContextMenuEvent):void { var url:String=”http://full.com.hk/”; var site:URLRequest=new URLRequest(url); navigateToURL(site); }