- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
单击箭头按钮时,它应该向右滑动并显示数组中的另一个元素。HTML 文件看起来像这样。
<div class="showContainer" *ngIf="windowWidth <= 629">
<div
class="col-100 tabStyleShow row"
*ngFor="let tabData of tabArray; let i = index"
[ngClass]="{ completed: i <= navCount }"
>
<span class="col-xs-2" *ngIf="navCount > 0 && navCount <= 4"
><img
src="assets/img/digital/arrow_right.svg"
class="tab-arrow-left-show"
(click)="slideTabPrevious()"
/></span>
<span class="col-xs-8 icon-title">
<span><img [src]="tabData.active" class="tab-icon-show"/></span>
<span
><div class="tab-title-show">{{ tabData.title }}</div></span
>
</span>
<span class="col-xs-2" *ngIf="navCount < 4" (click)="slideTabNext()"
><img
src="assets/img/digital/arrow_right.svg"
class="tab-arrow-show"
[ngClass]="{ arrowOpacity: i <= navCount }"
/></span>
</div>
</div>
样式文件看起来像这样。
.showContainer {
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 8px;
width: 100%;
float: left;
display: -webkit-inline-box;
overflow: scroll;
text-align: center;
.col-100 {
width: 100%;
}
.tabStyleShow {
background-color: #f9f9f9;
display: flex;
.icon-title {
display: inline-flex;
margin-left: 70px;
.tab-icon-show {
padding-top: 10px;
padding-bottom: 10px;
}
.tab-title-show {
padding-top: 18px;
font-size: 18px;
}
}
.tab-arrow-show {
padding-top: 22px;
padding-bottom: 20px;
}
.tab-arrow-left-show {
padding-top: 20px;
padding-bottom: 20px;
transform: rotate(180deg);
}
}
.tabStyleShow.completed {
background-color: #ffffff;
.tab-icon-show {
}
.tab-title-show {
color: #383838;
}
.tab-arrow-show.arrowOpacity {
opacity: 1;
}
}
}
TypeScript 文件看起来像这样。
slideTabPrevious() {
if (this.navCount > 4) {
this.form = !this.form;
}
this.navCount = this.navCount - 1;
}
slideTabNext() {
console.log(this.quesArray);
this.navCount = this.navCount + 1;
if (this.navCount > 4) {
this.form = !this.form;
}
}
最佳答案
终于有时间做个小动画了。关键是要有两个 div,但每次都显示一个。一个动画花费 1000 毫秒,另一个花费 0
我们的 .html 就像
<div>
<button *ngIf="navCount" (click)="slideTabPrevious()"><</button>
<div *ngIf="toogle" style="display:inline" [@fadeInOut]>
{{tabData[navCount].img}} - {{tabData[navCount].title}}
</div>
<div *ngIf="!toogle" style="display:inline" [@fadeInOut]>
{{tabData[navCount].img}} - {{tabData[navCount].title}}
</div>
<button *ngIf="navCount<tabData.length-1" (click)="slideTabNext()">></button>
</div>
在输出组件中我们添加“动画”
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
animations: [
trigger('fadeInOut', [
state('void', style({
opacity: 0
})),
transition('void => *', animate(1000)),
transition('* => void', animate(0)),
]),
]
})
最后我们有一个变量 toogle 并在 clicks 函数中更改此变量
toogle: boolean = false;
slideTabPrevious() {
this.navCount--;
this.toogle = !this.toogle;
}
slideTabNext() {
this.navCount++;
this.toogle = !this.toogle;
}
stackblitz用丑陋的例子(但动画:))
注意:如果两个div在固定位置,我们可以做transition *=>void也花费100毫秒
关于css - 使用 CSS 在单击按钮时向右和向左滑动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53844732/
有没有人知道那里有预览@page CSS 规则的工具?如果做不到这一点,有什么东西可以用来打印完全支持这些规则的文档吗? http://www.w3.org/TR/CSS2/page.html 歌剧最
出于某种原因,当我向我的元素添加右/左浮动时,它会在下一行的图像元素后面显示它们。 这是实际的事件页面: http://www.dealerbyte.co.uk/used-cars.php 代码如下:
我想知道是否可以使用下面的 onTouch 方法来检测用户是否在屏幕上向左、向右、向上或向下移动手指。我有一个包含对象的网格,我只希望用户能够在四个方向上移动其中一个对象。 我的想法是使用 Actio
我想获取div的鼠标坐标,如下所示: $("#box").mousemove(function(e){ var x = e.pageX - this.offsetLeft; var y = e.pag
到目前为止,我有一个可以左右前后移动的玩家,但是我如何设置它是向前的,就像在网格上一样向前,而不是在我的玩家注视的地方向前。我将相机设置为 FPS,它跟随玩家。现在我想让玩家能够使用我的 MouseL
在水平时间轴 slider jquery 中,我希望默认情况下它是右向的。就像现在的图片,2015 年的价格就在右边。我希望默认选择最右边的 2017 年价格,用户可以向左滚动 我的代码 $('.ti
我正在尝试为纸牌游戏(Yu-Gi-Oh :D)制作一个牌组管理器,目前我只有一个包含可用纸牌的表格和一个面板,该面板以更大的尺寸显示用户选择的纸牌以及纸牌的描述。MVCE: import ja
我有一个从简单手势扩展的类,我正在使用 onfling 方法: class MyGestureListener extends GestureDetector.SimpleOnGestureListe
我很懒惰,讨厌每 5 秒就必须将右手移到箭头键或鼠标上来移动光标和编辑文本。有什么方法可以让我的手保持在打字位置并四处移动光标? 最佳答案 您可以在特定的首选项窗口中更改这些设置: windows -
这是我的第一个应用程序,我尝试进行从右到左或从左到右的翻译。 这是代码 Res > anim > translate_left Res > anim > translate_right
我有以下代码: out of bound :( 我不希望它穿过 window 。我需要它的右边框保持可见。 JSFiddle 链接:http://jsfiddle.net/9SZAB/ 最佳答案
我正在尝试让我的导航图标菜单按钮在 THIS IS A LOGO Home About
因为我自己的代码有问题,所以我正在研究以下链接: https://bost.ocks.org/mike/path/ 我想我已经低于 // push a new data point onto the
所以首先这就是我要实现的目标 我想保持 Logo 在网页中间居中,搜索栏向右拉(下面有文字)这是我目前拥有的代码: http://jsfiddle.net/62b4jf1n/
这个问题在这里已经有了答案: Android: How to handle right to left swipe gestures (22 个回答) 关闭4个月前。 我有一个 Android 应用程
我正在尝试创建一个控件,用户可以在该控件中触摸并移动框架内的按钮。这是我的代码。 - (void)wasDragged:(UIButton *)button withEvent:(UIEvent *)
我正在使用svg创建一个几何campass工具,其中有3个btns,1) 用于移动位于中心的整个营地2) 增加圆的半径3)用于旋转圆的半径4)根据第4个btn的位置使用路径(svg)绘制圆,该位置始终
无论分辨率如何,我都试图将此框移到屏幕的右侧,但我找不到答案。 我的代码是这样的 wp_get_archives( array( 'type' => 'postbypost',
我正在为 Qt 按钮小部件编写弹出菜单。每当单击按钮时,都会弹出一个菜单(在按钮下方)。 弹出菜单默认位于下方左侧。 有没有办法让弹出菜单在按钮下方的右侧弹出? 没有设置位置功能,所以我想知道是否有一
我正在尝试使用 jQuery 构建一个扫雷游戏,我成功地使用 event.which 处理了左右点击,但是是否可以同时检测到左右按钮的点击? 最佳答案 我怀疑你是否会同时获得两者,一次会先出现,即使相
我是一名优秀的程序员,十分优秀!