⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 toggle.js

📁 初学者
💻 JS
字号:
/*	Copyright (c) 2004-2006, The Dojo Foundation	All Rights Reserved.	Licensed under the Academic Free License version 2.1 or above OR the	modified BSD license. For more information on Dojo licensing, see:		http://dojotoolkit.org/community/licensing.shtml*/dojo.provide("dojo.lfx.toggle");dojo.require("dojo.lfx.*");dojo.lfx.toggle.plain = {show:function (node, duration, easing, callback) {	dojo.html.show(node);	if (dojo.lang.isFunction(callback)) {		callback();	}}, hide:function (node, duration, easing, callback) {	dojo.html.hide(node);	if (dojo.lang.isFunction(callback)) {		callback();	}}};dojo.lfx.toggle.fade = {show:function (node, duration, easing, callback) {	dojo.lfx.fadeShow(node, duration, easing, callback).play();}, hide:function (node, duration, easing, callback) {	dojo.lfx.fadeHide(node, duration, easing, callback).play();}};dojo.lfx.toggle.wipe = {show:function (node, duration, easing, callback) {	dojo.lfx.wipeIn(node, duration, easing, callback).play();}, hide:function (node, duration, easing, callback) {	dojo.lfx.wipeOut(node, duration, easing, callback).play();}};dojo.lfx.toggle.explode = {show:function (node, duration, easing, callback, explodeSrc) {	dojo.lfx.explode(explodeSrc || {x:0, y:0, width:0, height:0}, node, duration, easing, callback).play();}, hide:function (node, duration, easing, callback, explodeSrc) {	dojo.lfx.implode(node, explodeSrc || {x:0, y:0, width:0, height:0}, duration, easing, callback).play();}};

⌨️ 快捷键说明

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