Advertisement
Guest User

Untitled

a guest
Oct 14th, 2020
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.26 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>HTML5 Viewer</title>
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  6.         <meta charset="UTF-8" />
  7.         <link rel="stylesheet" href="./libs/creator.css" />
  8.         <script src="./libs/jquery.js"></script>
  9.         <script src="./libs/jquery.plugin.js"></script>
  10.         <script src="./libs/creator.js"></script>
  11.     </head>
  12.     <body>
  13.         <div id="Frame" class="animate-creator-container" style="width:600px; height:592px;"></div>        
  14.         <script type="text/javascript">
  15.             jQuery(function ($) {
  16.                 $("#Frame").animate360(
  17. {
  18.     "controls": {
  19.         "desktop": {
  20.             "align": "center",
  21.             "autohide": true,
  22.             "backgroundcolor": "#4a89dc",
  23.             "drag": "none",
  24.             "foregroundcolor": "#000000",
  25.             "fullscreen": "none",
  26.             "guide": false,
  27.             "hint": false,
  28.             "link": {
  29.                 "display": false,
  30.                 "uri": ""
  31.             },
  32.             "magnifier": "none",
  33.             "palette": false,
  34.             "share": {
  35.                 "email": false,
  36.                 "facebook": false,
  37.                 "qrcode": false,
  38.                 "twitter": false,
  39.                 "weibo": false
  40.             },
  41.             "spin": "none",
  42.             "style": "line",
  43.             "zoom": "separate"
  44.         },
  45.         "mobile": {
  46.             "align": "center",
  47.             "autohide": true,
  48.             "backgroundcolor": "#4a89dc",
  49.             "drag": "none",
  50.             "foregroundcolor": "#000000",
  51.             "fullscreen": "none",
  52.             "guide": false,
  53.             "link": {
  54.                 "display": false,
  55.                 "uri": ""
  56.             },
  57.             "magnifier": "none",
  58.             "palette": false,
  59.             "share": {
  60.                 "email": false,
  61.                 "facebook": false,
  62.                 "qrcode": false,
  63.                 "twitter": false,
  64.                 "weibo": false
  65.             },
  66.             "spin": "none",
  67.             "style": "line",
  68.             "zoom": "separate"
  69.         }
  70.     },
  71.     "initview": {
  72.         "column": 1,
  73.         "partial": true
  74.     },
  75.     "layout": {
  76.         "center": true,
  77.         "fit": true
  78.     },
  79.     "object": {
  80.         "columns": 48,
  81.         "height": 592,
  82.         "model": "cylindrical",
  83.         "name": "Elu",
  84.         "sector": false,
  85.         "width": 600
  86.     },
  87.     "palette": [
  88.     ],
  89.     "path": {
  90.         "extension": ".jpg",
  91.         "icon": "./icons/",
  92.         "image": "./Elu/images/",
  93.         "webp": false
  94.     },
  95.     "rotation": {
  96.         "axis": "horizontal",
  97.         "direction": "cw",
  98.         "event": "drag",
  99.         "hint": false,
  100.         "inertia": false
  101.     },
  102.     "spin": {
  103.         "continue": false,
  104.         "direction": "cw",
  105.         "keepSize": true,
  106.         "repeat": true,
  107.         "time": 200,
  108.         "type": "spin"
  109.     },
  110.     "sprite": {
  111.         "eachHeight": 0,
  112.         "eachWidth": 0,
  113.         "use": false
  114.     },
  115.     "version": "v3",
  116.     "zoom": {
  117.         "magnifierevent": "drag",
  118.         "ratio": 0,
  119.         "type": "none"
  120.     }
  121. }
  122.  
  123.                 );
  124.             });
  125.         </script>
  126.     </body>
  127. </html>
  128.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement