<style>
  #temp-video-cover {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11;
    background-color: rgba(0, 0, 0, 0.3);
    transition: .15s;
    opacity: 0;
    font-family: "微软雅黑", "PingFangSC", "Helvetica neue", "Hiragino sans gb", "Arial", "Microsoft YaHei UI", "Microsoft YaHei", "SimSun", "sans-serif";
    user-select: none;
    -ms-user-select: none;
  }


  #temp-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  #temp-video-title {
    position: absolute;
    opacity: 0;
    right: 10px;
    top: 0px;
    transition: .15s;
  }

  #temp-video-container:hover #temp-video-title {
    display: inline;
    opacity: 1;
    top: 10px;
  }

  .FUI-dialog-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.8rem 0.5rem 1rem;
    background-color: rgb(0, 135, 205);
    border-color: rgb(0, 135, 205);
  }

  .FUI-dialog-header-title {
    font-size: 1rem;
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    flex-grow: 1;
    color: white;
  }

  .FUI-dialog-header-close {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.8rem;
    line-height: 1.25rem;
    border-radius: 0.9rem;
    color: #0088CE;
    text-align: center;
    transition: background-color 0.5s;
    cursor: pointer;
    background-color: #2FB8FF;
  }

  .FUI-dialog-header-close:hover {
    cursor: pointer;
    background-color: #6ACCFF;
  }

  .FUI-dialog-content {
    position: relative;
    flex-grow: 1;
    background-color: rgb(0, 135, 205);
    font-size: 0;
  }

  .FUI-dialog-footer {
    position: relative;
    height: 3rem;
    min-height: 3rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0.5rem;
    background-color: #F0F0F0;
  }

  .FUI-button-svg {
    display: inline-block;
  }

  #speed-box {
    background-color: #070707;
    border-color: #070707;
    color: #8B8B8B;
    display: flex;
    justify-content: flex-end;
    height: 2rem;
    align-items: center;
    font-weight: 200;
  }

  .speed-box-header {
    font-size: 0.9rem;
    cursor: default;
  }

  .speed-box-content {
    display: flex;
    font-size: 0.7rem;
  }

  .speed-box-content>div {
    width: 2.7rem;
    height: 1.2rem;
    background-color: #373737;
    margin: 0 0.5rem;
    text-align: center;
    line-height: 1.2rem;
    border-radius: 0.6rem;
    cursor: pointer;
  }

  .speed-box-content>div:hover {
    background-color: #555555;
    color: #FFFFFF;
  }

  .speed-box-content .speed-box-selected {
    background-color: #767676;
    color: #FFFFFF;
  }

  .speed-box-content .speed-box-selected:hover {
    background-color: #767676;
  }
</style>
<div style="text-align:right;">
  <a title="观看本节视频" href="javascript:showVideo();" style="text-decoration:none;">
    <img src="https://help.grapecity.com.cn/download/attachments/46173032/VideoPortal.png?api=v2" />
  </a>
</div>

<div id="temp-video-cover">
  <div id="temp-video-container">
    <div class="FUI-dialog-header">
      <span class="FUI-dialog-header-title">活字格视频</span>
      <div class="FUI-dialog-header-close" id="FUI-dialog-close" title="" onclick="closeVideo()">
        <span class="FUI-button-svg"></span><span class="FUI-button-text">&#10005;</span></div>
    </div>

    <div class="FUI-dialog-content">
      <div style="overflow:hidden;">
        <video id="temp-video" src="http://video1.grapecity.com.cn/HuoZiGe/Tutorials/v5.0/教学视频/建立页面-创建普通页面.mp4"
          height="450" controls="controls" onplaying="startplay()">您的浏览器不支持播放此视频。</video>
      </div>
    </div>
    <div id="speed-box">
      <div class="speed-box-header">
        <div>倍速:</div>
      </div>
      <div class="speed-box-content">
        <div>0.5X</div>
        <div class="speed-box-selected">1.0X</div>
        <div>1.25X</div>
        <div>1.5X</div>
        <div>2.0X</div>
      </div>
    </div>
  </div>
</div>

<script>
  var videoContainer = document.getElementById("temp-video-container");
  var videoCover = document.getElementById("temp-video-cover");
  var video = document.getElementById("temp-video");

  function showVideo() {
    videoCover.style.display = "block";
    setTimeout(function () {
      videoCover.style.opacity = 1;
      video.play();
    }, 200);
  }

  function closeVideo() {
    videoCover.style.opacity = 0;
    setTimeout(function () {
      videoCover.style.display = "none";
      video.pause();
    }, 150);
    return false;
  }

  function setPlaySpeed(item) {
    video.playbackRate = parseFloat(item.textContent);
    document.getElementsByClassName("speed-box-selected")[0].classList.remove("speed-box-selected");
    item.classList.add("speed-box-selected");
  }

  var isplayed = 1;
  var startplay = function () {
    if (isplayed) {
      ga('send', 'event', 'Play Video', '活字格');
      isplayed = 0;
    }
    return false;
  }

  videoCover.onclick = function (e) {
    if (e.target.nodeName === "A") {
      closeVideo();
    }
  }

  document.querySelectorAll("#speed-box .speed-box-content>div").forEach((item) => {
    item.addEventListener('click', () => { setPlaySpeed(item) });
  });

</script>





1.描述

在活字格中,一个普通页面对应一个网页页面。

2.创建普通页面

创建普通页面有以下几种方法:

方法一 在对象管理器的页面标签上,右击选择“创建新页面”,即可创建一个空白页面。

图1  创建页面方法一

方法二 在功能区的菜单栏中,选择“创建->页面”,即可创建一个空白页面。

图2  创建页面方法二

方法三 由Excel文件生成页面。在功能区的菜单栏中,选择“数据->Excel到页面”,按照提示操作即可由Excel文件生成页面。

图3  Excel到页面

说明
  • 如果Excel文件有多个工作表,则会出现“选择工作表以导入”弹框,可勾选一个或多个工作表导入到页面。
  • 如果Excel文件包含有密码,则需要输入密码后才能将其导入。
  • 只支持Excel的以下设置的导入:
    • 行:高度;
    • 列:宽度;
    • 单元格:值,公式,数字格式,水平对齐方式,垂直对齐方式,缩进,自动换行,垂直方向的合并,水平方向的合并,超链接,背景色,文本颜色,字体,字体大小,字体样式,下划线,中划线,边框,数据验证。
    • Sheet:图片(不支持.xls格式文件的图片导入),部分图表,打印设置,名称(不支持导入不符合活字格要求的名称,如跨表引用的名称。)

方法四 由数据表生成页面,即从数据表自动生成该表的数据展示与编辑页面。

操作步骤

  在功能区的菜单栏中,选择“创建->从表生成页面”。

图4  从表生成页面

  在弹出的“创建页面”窗口中选择想要生成页面的表,并选择将生成的页面类型和是否合并添加/更改页面。如图5所示。

图5  创建页面
说明
    • 默认为全部勾选状态,此时生成两个页面:员工表_列表页面,员工表_详情页面。
      列表页面是一个表格列出所有数据表中的数据。列表页面中包含添加记录、更改、删除的超链接。其中还有一些命令,在以后的章节中将对命令进行详细介绍。
      详情页面显示每条数据的详细信息。
    • 您也可以取消勾选“合并添加/更改”页面,这时会生成四个页面:列表页面、查看页面、添加页面和编辑页面。使用默认模式,可以减少页面个数,增强页面复用度,更有助于活字格应用程序开发

页面生成后可以根据需求自行修改页面。

方法五 导入其他活字格文件的页面。您可以导入已经存在的文件(.fgcc文件)中的表和页面。

操作步骤

  选择“数据->活字格文件”。

图6  导入活字格文件

  选择要导入的活字格文件,单击“打开”。

  勾选您想导入的页面和表,单击“确定”。

说明
导入页面时,如果页面上有对数据表的绑定设置,但是没有导入表,会导致程序错误。


回到顶部