① 下載 jquery UI 彈窗demo(css js html)詳細步驟
下載JQ ui 彈窗demo可按照以下步驟完成:
1,打開JQ ui,點擊download按鈕,如下圖:
② 我想用js或者jquery 批量替換一個字元串
varstr='<divclass="demo1"style="height:auto;min-height:0px;width:1500px;color:red;「>內容1</div>'+
'<divclass="demo1"style="height:auto;min-height:0px;width:1500px;color:red;「>內容2</div>'+
<divclass="demo2"style="height:auto;min-height:0px;width:1500px;color:red;「>內容3</div>'
str=str.replace(/width:s*(d)+/g,'width:1000');
這樣後str就是替內換後的結果容
③ JS跑馬燈動不了
<div id="demo" style="overflow:hidden;height:150px;width:500px;background:#214984;color:#ffffff; float:left;">
<table align="left" cellpadding="0" cellspace="0" border="0">
<tr>
<td id="demo1" valign="top">
<img src="../images/my_1.jpg" alt="" />
<img src="../images/my_13.jpg" alt="" />
<img src="../images/my_2.jpg" alt="" />
<img src="../images/my_8.jpg" alt="" />
<img src="../images/my_4.jpg" alt="" />
<img src="../images/my_9.jpg" alt="" />
<img src="../images/my_6.jpg" alt="" />
</td>
<td id="demo2" valign="top">
</td></tr>
</table></div>
<script language="javascript">
//不間斷滾屏
var speed=6
demo2.innerHTML=demo1.innerHTML
function Marquee(){
if(demo2.offsetWidth-zt.scrollLeft<=0)
zt.scrollLeft-=demo1.offsetWidth
else{zt.scrollLeft++}}
var MyMar=setInterval(Marquee,speed)
zt.onmouseover=function() {clearInterval(MyMar)}
zt.onmouseout=function() {MyMar=setInterval(Marquee,speed)}
</script>
④ jstree 1.0 如何去掉默認右鍵菜單中的 edit 子菜單
1、右鍵菜單需要配置插件contextmenu
默認右鍵功能:"plugins" : [ "themes", "html_data", "contextmenu" ]
無右鍵功能:"plugins" : [ "themes", "html_data" ]
這種情況會彈出為網頁的右鍵菜單
2、去掉右鍵菜單,只要將相應的默認菜單項設為null
Javascript代碼
$(function () {
$("#demo1").jstree({
"plugins" : [ "themes", "html_data", "contextmenu" ],
"contextmenu": {
"items": {
"create": null,
"rename": null,
"remove": null,
"ccp": null
}
}
});
});
3、自定義右鍵菜單
Javascript代碼
$(function () {
$("#demo1").jstree({
"plugins" : [ "themes", "html_data", "contextmenu" ],
"contextmenu": {
"items": {
"create": null,
"rename": null,
"remove": null,
"ccp": null,
"彈出對話框": {
"label": "彈出對話框",
"action": function (obj) { alert(obj) }
},
"包含子級菜單": {
"label": "包含子級菜單",
"submenu": {
"cut" : {
"separator_before" : false,
"separator_after" : false,
"label" : "Cut",
"action" : function (obj) { alert("Cut") }
}
}
}
}
}
});
});
⑤ js不間斷從上到下滾動的圖片代碼
先製作向上滾動的效果:
插入代碼:
<!-- 指向鏈接圖片url -->
<base href=" http://www.it365cn.com";>
<div id=demo style=overflow:hidden;height:150;width:90;background:#214984;color:#ffffff>
<div id=demo1>
<!-- 定義圖片 -->
<img src="images/logo_1.gif">
<img src="images/logo/flashempire.gif">
<img src="images/logo.gif">
<img src="images/logo/5dmedia.gif">
<img src="images/logo/macromedia.gif">
<img src="images/logo/sucaiw.gif">
<img src="images/logo/blueieda.gif">
<img src="images/logo/htmlcn.gif">
<img src="images/logo/fwcn.gif">
</div>
<div id=demo2></div>
</div>
<script>
var speed=30
demo2.innerHTML=demo1.innerHTML
function Marquee(){
if(demo2.offsetTop-demo.scrollTop<=0)
demo.scrollTop-=demo1.offsetHeight
else{
demo.scrollTop++
}
}
var MyMar=setInterval(Marquee,speed)
demo.onmouseover=function() {clearInterval(MyMar)}
demo.onmouseout=function() {MyMar=setInterval(Marquee,speed)}
</script>
製作向下滾動的效果:
將上面「製作向上滾動的效果」中的紅色字體Js部分替換成:
<script>
var speed=30
demo2.innerHTML=demo1.innerHTML
demo.scrollTop=demo.scrollHeight
function Marquee(){
if(demo1.offsetTop-demo.scrollTop>=0)
demo.scrollTop+=demo2.offsetHeight
else{
demo.scrollTop--
}
}
var MyMar=setInterval(Marquee,speed)
demo.onmouseover=function() {clearInterval(MyMar)}
demo.onmouseout=function() {MyMar=setInterval(Marquee,speed)}
</script>
⑥ 基於webrtc以及nodejs的P2P實時視頻demo
吐槽, 你的分類錯了, 導致不能貼代碼。
github:
priologic/easyrtc
webRTC/webRTC.io
自己開發推薦使用/easyrtc
只是玩玩 對於webRTC.io使用簡單
npm install webrtc.io
Client
<video id="local" autoplay="autoplay"></video>
<video id="remote" autoplay="autoplay"></video>
<script src="/webrtc.io.js"></script>
<script>
// note: make sure hostname available to all connecting clients
// (ie. probably not `localhost`)
rtc.connect('ws://yourserveraddress:8001');
rtc.createStream({"video": true, "audio":false}, function(stream){
// get local stream for manipulation
rtc.attachStream(stream, 'local');
});
rtc.on('add remote stream', function(stream){
// show the remote video
rtc.attachStream(stream, 'remote');
});
// more rtc callbacks are available
</script>
Server
var webRTC = require('webrtc.io').listen(8001);
//then a bunch of callbacks are available