首页 软件开发 代码片段 ( Page 61 )

代码片段 8064

#Perl
Perl 调用 SetAttributes 修改文件属性 (Windows)

use Win32::File; Win32::File::SetAttributes($name, $attr); #!/usr/bin/perl -w use Win32::F…

2015-12-14 905

#Perl
Perl 使用 telnet 登录到远程服务器

use Net::Telnet; $telnet = Net::Telnet->new ( Timeout => 90, Prompt => '%', Host …

2015-12-14 905

#Perl
从 Yahoo.com 获取股票数据(csv格式)

#!/usr/bin/perl # # Script to download a table of daily stock data in .csv format # from y…

2015-12-14 776

#Perl
Perl 使用 Mail::POP3Client 发送邮件

use Mail::POP3Client; $mail = new Mail::POP3Client("username", "password", "pop3.yourserve…

2015-12-14 339

#CSS
CSS BFC(Block Formatting Context)

<style> ul li{list-style:none;float:left;width:120px;height:600px;margin:10px;backgr…

css
2015-12-14 229

#CSS
css3实现文字跟随鼠标的上下抖动

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xh…

css
2015-12-14 622

#CSS
变量名

/* 正确的变量名 */ :root{ --link-color: #06c; --_hover-color: #f6c; --toolTip_color: #ff0; --mai…

css
2015-12-14 339

#CSS
正则参考

// 正则做参考,拷贝使用,注意正则前后加转义符 var regexEnum = { intege:"^-?[1-9]\d*$", //整数 intege1:"^[1-9]\d*$…

css
2015-12-14 518

#CSS
只对IE9+的有效CSShack

只对IE9+的有效CSShack /*only for IE9+ .class是你要设置的class名称*/ :root .class {}

css
2015-12-14 302

#CSS
纯CSS实现的图片切换效果

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>…

css
2015-12-14 245

#CSS
右侧导航列表带弹出菜单

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>…

css
2015-12-14 956

#CSS
纯CSS制作可爱的小狐狸日夜照

<div class="the-container"> <input type="checkbox" id="toggle" /> <label fo…

css
2015-12-14 968
1 59 60 61 62 63 672