emer 发布于  2017-10-20 15:28 
emer 发布于  2017-10-20 14:56 

Krpano制作全景视频

<scene name="videopano" title="krpano Panoramic Video Example"> <!-- include the videoplayer interface / skin (with VR support) --> <include url="...
emer 发布于  2017-10-19 23:49 

百度地图标注点

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> &l...
emer 发布于  2017-10-18 10:01 

php连接数据库?

<?php $link = mysqli_connect( 'localhost', 'root', 'root', 'lininn'); mysqli_set_charset($link, "utf8"); if (!$link) { printf("Can't connect to MySQL...
emer 发布于  2017-10-11 21:25 

解决数据库无法远程访问

1。 改表法。 可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%" mysql -u root -pvmwaremysql>use mysq...
emer 发布于  2017-10-11 15:32 

Krpano制作补天补地logo

复制下面代码保存到skin里面为nadir-logo.xml <krpano> <!-- startup viewing direction and angle --> <view hlookat="0" vlookat="55" fov="110" /> <!-...
emer 发布于  2017-10-10 15:02 

Krpano添加自动旋转

1.scene外添加 <autorotate enabled="true" waittime="5.0" speed="-3.0" horizon="0.0" tofov="120.0" /> 2.在startup添加 <action name="startup"> if(star...
emer 发布于  2017-10-10 10:39 

angular 1.x directive

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script src="angular.min.js"></scrip...
emer 发布于  2017-9-26 22:02 

js实现全屏

function fullScreen(el) { var rfs = el.requestFullScreen || el.webkitRequestFullScreen || el.mozRequestFullScreen || el.msRequestFullScreen, wscript; if(type...
emer 发布于  2017-9-26 13:55