摘要:
jquery实现文字上下滚动的方法。代码://上下滚动var textRoll=function(){$('#notice p:last').css({'height':'0px','opacity': '0'}).insertBefore('#notice p:first').animate({'height':'35px','opacity': '1'}, 'slow', function() { $(this).r 阅读全文
摘要:
自动设置iframe的宽度,如何用jquery来实现呢?代码:代码:/*自动宽度*/ global.autoWidth = function () { //global_main $(".global_main").height($(window).height() - $(".global_header").eq(0).outerHeight()); $('.global_main').width($(window).width() - $('.global_slide').eq(0).outerWidth()).sho 阅读全文
摘要:
通过 jQuery可以在元素上创建滑动效果,jQuery slideDown() 方法用于向下滑动元素。 jQuery 滑动方法 通过 jQuery,您可以在元素上创建滑动效果。 jQuery 拥有以下滑动方法: slideDown() 向下滑动元素 slideUp()向上滑动元素 slideToggle()在 slideDown() 与 slideUp() 方法之间进行切换。 jQuery slideDown() 方法 jQuery slideDown() 方法用于向下滑动元素。 语法:www.jbxue.com$(selector).slideDown(speed,callback); 可 阅读全文
摘要:
c#读写注册表示例,示例中有详细注释。代码://写注册表RegistryKey regWrite;//往HKEY_CURRENT_USER主键里的Software子键下写一个名为“Test”的子键//如果Test子键已经存在系统会自动覆盖它regWrite = Registry.CurrentUser.CreateSubKey("Software\\Test");//往Test子键里添两条数据项,一条名为"Name",另一条名为"Sex"//值分别是"luolie","男"regWrite.Se 阅读全文