Krpano制作全景视频
<scene name="videopano" title="krpano Panoramic Video Example">
<!-- include the videoplayer interface / skin (with VR support) -->
<include url="...
百度地图标注点
<!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...
php连接数据库?
<?php
$link = mysqli_connect(
'localhost',
'root',
'root',
'lininn');
mysqli_set_charset($link, "utf8");
if (!$link) {
printf("Can't connect to MySQL...
解决数据库无法远程访问
1。 改表法。
可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"
mysql -u root -pvmwaremysql>use mysq...
Krpano制作补天补地logo
复制下面代码保存到skin里面为nadir-logo.xml
<krpano>
<!-- startup viewing direction and angle -->
<view hlookat="0" vlookat="55" fov="110" />
<!-...
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...
angular 1.x directive
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="angular.min.js"></scrip...
js实现全屏
function fullScreen(el) {
var rfs = el.requestFullScreen || el.webkitRequestFullScreen || el.mozRequestFullScreen || el.msRequestFullScreen,
wscript;
if(type...