以下是在 PowerPoint 中创建占位符的步骤:
1 打开 PowerPoint 并选择要添加占位符的幻灯片。
2 在“插入”选项卡中,单击“形状”按钮,然后选择“文本框”工具。
3 在幻灯片上单击并拖动鼠标,以创建一个文本框。
4 在文本框中输入占位符的文本,例如“标题”或“正文”。
5 选中文本框,然后在“格式”选项卡中选择“形状轮廓”。
6 在“形状轮廓”选项卡中,选择“无轮廓”。
7 在“格式”选项卡中选择“形状填充”。
8 在“形状填充”选项卡中,选择“无填充”。
9 在“格式”选项卡中选择“占位符”。
10 在“占位符”选项卡中,选择适当的占位符类型,例如“标题”或“正文”。
完成上述步骤后,您就可以在幻灯片中添加一个占位符了。您可以将其移动到任何位置,并根据需要调整其大小。小米系统MIUI 14中时钟占格是一种新的设计风格,它将时间和日期显示在手机屏幕的状态栏上方,并占据了一个单独的位置。这样可以让用户更加方便地查看当前时间和日期,而不必打开锁屏或下拉通知栏。
如果您想要关闭时钟占格功能,可以按照以下步骤进行 *** 作:
1 进入“设置”应用程序,在搜索框中输入“状态栏”。
2 在搜索结果列表中找到“状态栏样式”选项,并点击进入。
3 找到“时钟占位符”选项,并将其关闭即可<template>
<view class="navbar">
<view class="navbar-fixed">
<!-- 状态栏小程序撑起高度 -->
<view :style="{height:statusBarHeight+'px'}"></view>
<view class="navbar-content" :style="{height:navBarHeight+'px',width:windowWidth+'px'}">
<view class="navbar-search">
<view class="navbar-search_icon">
<uni-icons type="search" size="16" color="#999"></uni-icons>
</view>
<view class="navbar-serach">
<input class="navbar-search_text" type="text" v-model="val" placeholder="请输入您要搜索的内容" />
</view>
</view>
</view>
</view>
<!-- 需要添加占位符高度 状态栏高度+导航栏高度(否则下面tab会塌陷)-->
<view :style="{height: statusBarHeight+navBarHeight+'px'}"></view>
</view>
</template>
<script>
export default {
name: 'navbar',
data() {
return {
statusBarHeight: 20,/ 状态栏高度 /
navBarHeight: 45,/ 导航栏高度 /
windowWidth: 375,/ 窗口宽度 /
/ 设定状态栏默认高度 /
val: ''/ 导航栏搜索框的值 /
};
},
created() {
// 获取手机系统信息
const info = unigetSystemInfoSync()
// 设置状态栏高度(H5顶部无状态栏小程序有状态栏需要撑起高度)
thisstatusBarHeight = infostatusBarHeight
thiswindowWidth = infowindowWidth
// 除了h5 app mp-alipay的情况下执行
// #ifndef H5 || APP-PLUS || MP-ALIPAY
// 获取胶囊的位置
const menuButtonInfo = unigetMenuButtonBoundingClientRect()
consolelog(menuButtonInfo);
// (胶囊底部高度 - 状态栏的高度) + (胶囊顶部高度 - 状态栏内的高度) = 导航栏的高度
thisnavBarHeight = (menuButtonInfobottom - infostatusBarHeight) + (menuButtonInfotop - infostatusBarHeight)
thiswindowWidth = menuButtonInfoleft
// #endif
}
}
</script>
<style lang="less">
@import '///uniless';
navbar {
navbar-fixed {
position: fixed;
top: 0;
left: 0;
z-index: 99;
width: 100%;
background-color: @mk-base-color;
navbar-content {
display: flex;
justify-content: center;
align-items: center;
padding: 0 15px;
height: 45px;
box-sizing: border-box;
navbar-search {
display: flex;
align-items: center;
padding: 0 10px;
width: 100%;
height: 30px;
border-radius: 30px;
background-color: #fff;
navbar-search_icon {
// width: 10px;
// height: 10px;
margin-right: 10px;
}
navbar-search_text {
width: 100%;
font-size: 14px;
color: #999;
}
}
&search {
padding-left: 0;
navbar-content__search-icons {
margin-left: 10px;
margin-right: 10px;
}
navbar-search {
border-radius: 5px;
}
}
}
}
}
</style>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)