A. 我已经写好了一套移动端网站的源码。我还有一个服务器,那么如何实现把源码放进去
路由器设置外网口对应本地服务器内网,服务器假设IIS,指定WEB目录就可以
B. 求按键精灵简单鼠标移动源代码
想在地图里用鼠标移动扫怪扫到怪 图标改变然后打怪??这样是不是太麻烦了,效率太低了??FindPic(区域左边:整数,区域上边:整数,区域右边:整数,区域下边:整数,图片路径:字符串,相似度:0.5到1之间,1为最相似,输出找到的x坐标:整型变量,输出找到的y坐标:整型变量)用FindPic来找怪物的不是更容易,一般怪物就那几个动作那几张图~~~20分太少了。。。
希望采纳
C. 企业网站移动建站源码哪家强
手机端的移动建站源码目前大部分都不开放源码的,一般都是直接附带空间来销售,这样安全性高,客户稳定。考虑SEO的话,还是自己做吧,说白了就是把宽度全部设置为百分比,图片用max来限制,不难的。
D. 移动视频直播 ios源码
这个不知道,不过,做移动视频直播平台的话,可以考虑方舟智联手机直播系统,提供源码,它不但覆盖PC/iOS/Android多个平台,同时还引入了先进的音视频处理技术和负载均衡技术,能很好地保证了系统运行的稳定流畅。
E. 求跟随屏幕移动的图象的JAVA源码
====1、将以下代码加入到HEML的<head></head>之间: <style type="text/css"> #floater { position: absolute; left: 500; top: 146; width: 125; visibility: visible; z-index: 10; }</style> ====2、将以下代码加入到HEML的<body></body>之间 <div ID="floater" style="left: 590px; top: 158px"> <p align="center"><img SRC="想要显示的图片.gif" alt="图片显示的文字" WIDTH="125" HEIGHT="60"><br> <font color="#FF8040">图片下面的文字</font></p> </div><script LANGUAGE="JavaScript"> self.onError=null; currentX = currentY = 0; whichIt = null; lastScrollX = 0; lastScrollY = 0; NS = (document.layers) ? 1 : 0; IE = (document.all) ? 1: 0; <!-- STALKER CODE --> function heartBeat() { if(IE) { diffY = document.body.scrollTop; diffX = document.body.scrollLeft; } if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; } if(diffY != lastScrollY) { percent = .1 * (diffY - lastScrollY); if(percent > 0) percent = Math.ceil(percent); else percent = Math.floor(percent); if(IE) document.all.floater.style.pixelTop += percent; if(NS) document.floater.top += percent; lastScrollY = lastScrollY + percent; } if(diffX != lastScrollX) { percent = .1 * (diffX - lastScrollX); if(percent > 0) percent = Math.ceil(percent); else percent = Math.floor(percent); if(IE) document.all.floater.style.pixelLeft += percent; if(NS) document.floater.left += percent; lastScrollX = lastScrollX + percent; } } <!-- /STALKER CODE --> <!-- DRAG DROP CODE --> function checkFocus(x,y) { stalkerx = document.floater.pageX; stalkery = document.floater.pageY; stalkerwidth = document.floater.clip.width; stalkerheight = document.floater.clip.height; if( (x > stalkerx && x < (stalkerx+stalkerwidth)) && (y > stalkery && y < (stalkery+stalkerheight))) return true; else return false; } function grabIt(e) { if(IE) { whichIt = event.srcElement; while (whichIt.id.indexOf("floater") == -1) { whichIt = whichIt.parentElement; if (whichIt == null) { return true; } } whichIt.style.pixelLeft = whichIt.offsetLeft; whichIt.style.pixelTop = whichIt.offsetTop; currentX = (event.clientX + document.body.scrollLeft); currentY = (event.clientY + document.body.scrollTop); } else { window.captureEvents(Event.MOUSEMOVE); if(checkFocus (e.pageX,e.pageY)) { whichIt = document.floater; StalkerTouchedX = e.pageX-document.floater.pageX; StalkerTouchedY = e.pageY-document.floater.pageY; } } return true; } function moveIt(e) { if (whichIt == null) { return false; } if(IE) { newX = (event.clientX + document.body.scrollLeft); newY = (event.clientY + document.body.scrollTop); distanceX = (newX - currentX); distanceY = (newY - currentY); currentX = newX; currentY = newY; whichIt.style.pixelLeft += distanceX; whichIt.style.pixelTop += distanceY; if(whichIt.style.pixelTop < document.body.scrollTop) whichIt.style.pixelTop = document.body.scrollTop; if(whichIt.style.pixelLeft < document.body.scrollLeft) whichIt.style.pixelLeft = document.body.scrollLeft; if(whichIt.style.pixelLeft > document.body.offsetWidth - document.body.scrollLeft - whichIt.style.pixelWidth - 20) whichIt.style.pixelLeft = document.body.offsetWidth - whichIt.style.pixelWidth - 20; if(whichIt.style.pixelTop > document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5) whichIt.style.pixelTop = document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5; event.returnValue = false; } else { whichIt.moveTo(e.pageX-StalkerTouchedX,e.pageY-StalkerTouchedY); if(whichIt.left < 0+self.pageXOffset) whichIt.left = 0+self.pageXOffset; if(whichIt.top < 0+self.pageYOffset) whichIt.top = 0+self.pageYOffset; if( (whichIt.left + whichIt.clip.width) >= (window.innerWidth+self.pageXOffset-17)) whichIt.left = ((window.innerWidth+self.pageXOffset)-whichIt.clip.width)-17; if( (whichIt.top + whichIt.clip.height) >= (window.innerHeight+self.pageYOffset-17)) whichIt.top = ((window.innerHeight+self.pageYOffset)-whichIt.clip.height)-17; return false; } return false; } function dropIt() { whichIt = null; if(NS) window.releaseEvents (Event.MOUSEMOVE); return true; } <!-- DRAG DROP CODE --> if(NS) { window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN); window.onmousedown = grabIt; window.onmousemove = moveIt; window.onmouseup = dropIt; } if(IE) { document.onmousedown = grabIt; document.onmousemove = moveIt; document.onmouseup = dropIt; } if(NS || IE) action = window.setInterval("heartBeat()",1); </script>
F. 先到合适的网站做移动站源码。还是找公司好呢
其实你这个问题本身
就能发现 你对相关内容 并不是很熟悉
建议你直接找咱们专业点的技术团队协助建站
特别是企业或公司 网站是企业的门面 是招牌 是企业形象
不是拿来玩玩 三天两天出问题 经常打不开 客户怎么看?
而且我们现在开发的系统
为企业客户提供一个管理平台
这个平台可以同时掌管 电脑版+手机版+微信平台+APP
四维一体的综合控制平台
非常方便
G. 源码移动层格式问题请教
问题描述:
源码文件下载:http://www.jscode.cn/jscode/js08041601.rar?
问题是 默认有9个窗口 能多添加几个窗口吗
问题2怎么调整层窗口的高度和宽度,因内容过多的话会溢出来(内容是调用asp文件)在源码的第几行修改
问题3如果把源码都拉到一个列 这时层窗口就自动的跑到左边去 怎么固定它
哥们改好源码后请发小弟邮箱[email protected] 或QQ当面指教283816566(指明来意)不甚感激
H. 求能够查看和分析移动站点源代码的软件或者插件
正常的浏览器,都带源码解析的工具。如opera的dragonfly,firefox的firebug
I. 大家帮忙弄个用MB(MobileBasic)语言编写的图片移动源码,我菜鸟有劳各位了。
回答字数有限,三言两语回答不了多少。
J. 移动网站源码能变成小程序源码吗
不行的,至少前端要重新开发,不然样式显示不了!