码迷,mamicode.com
首页 >  
搜索关键字:华三 radius 备份路由 下一跳    ( 2619个结果
radius
radius协议使用的是UDP传输协议,UDP协议相对于TCP更快速,无连接的不可靠。radius协议的包格式:012301234567890123456789012345678901+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+|Code|Identifier|Length|+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+..
分类:其他好文   时间:2017-03-08 01:18:17    阅读次数:178
VUE开发一个图片轮播的组件
完成效果图如下: vue开发的思路主要是数据绑定,代码如下: <template> <div ref="root" style="user-select: none;-webkit-user-select: none;overflow: hidden"> <div class="sliderPane ...
分类:其他好文   时间:2017-03-05 20:40:25    阅读次数:267
ie-css3.htc 让IE6, 7, and 8也支持box-shadow
作者:佚名 作者:佚名 IE6/7并不支持CSS3的属性,IE8也不能很好的支持CSS3。如何让IE 6/7/8支持border-radius (rounded),box-shadow ( shadow),text-shadow等这些属性呢?这里介绍一个通过htc脚本实现这些属性的方法 首先下载ie ...
分类:Web程序   时间:2017-03-05 16:26:56    阅读次数:172
javascript中简单提示框
.help-tip{ width: 350px; border:1px solid #A0A0A0; background-color: #F8F8F8; border-radius: 5px; display: none; position: absolute; z-index:5555; lef... ...
分类:编程语言   时间:2017-03-03 21:15:14    阅读次数:149
css中content可以用到的字符编码
项目中用到的一些特殊字符和图标 html代码 <div class="cross"></div> css代码.cross{ width: 20px; height: 20px; background-color: #F3F9FF; border-radius: 10px; border: 1px s ...
分类:Web程序   时间:2017-03-01 13:57:18    阅读次数:468
60s倒计时(原生js版)
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> .chaxun-yanzhengma-btn{ border-radius: 4px; background-color: #FF4179; bor ...
分类:Web程序   时间:2017-02-28 19:23:47    阅读次数:212
CSS3--border-radius小用法
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> div.circle { height: 100px; width: 100px; background: #9da; border-radius: ...
分类:Web程序   时间:2017-02-25 21:38:44    阅读次数:200
WPF制作歌词动画
最近再做一个UWP的音乐播放器,今天实现了歌词动画,不是滚动的,滚动的慢慢研究 思路:在右边放了三个textBlock,设置 textBlock的effect属性 <TextBlock.Effect> <BlurEffect Radius="0"></BlurEffect> </TextBlock. ...
分类:Windows程序   时间:2017-02-25 01:09:41    阅读次数:260
less函数使用
示例.rounded-corners(@radius:5px){ -webkit-border-radius:@radius; -moz-border-radius:@radius; -ms-border-radius:@radius; -o-border-radius:@radius; border-radius:@radius; } #header{ .rounded-corners; } #footer{ .rounded-corners(10px); }说明.rounded-corners..
分类:其他好文   时间:2017-02-23 22:57:42    阅读次数:218
less引用其他less文件
示例//radius.less #header,#footer{ -webkit-border-radius:5px; -moz-border-radius:5px; -ms-border-radius:5px; -o-border-radius:5px; border-radius:5px; }//example6.less @import"radius.less"; @the-border:1px; @base-color:#111; @red:#842210; #header{ co..
分类:其他好文   时间:2017-02-23 22:56:22    阅读次数:271
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!