admin管理员组文章数量:1346292
I am running angular app, I calculate width of element and store it under variable finalposition and I want to move to left (finalposition)px. I want this style property to be applied only on hovering over the element. How to do this?
ponent.ts
ngAfterViewChecked(): void {
this.finalposition = document.getElementById('spandiv').offsetWidth;
}
ponent.html
<input id="inputCustome" type="text">
<p id="spandiv">xyzkskssss</p>
ponent.css
#inputCustomer {
text-align: center;
position: relative;
bottom: 7px;
left: 2px;
}
#spandiv {
position: absolute;
right:145px;
top: 40px;
background-color: #6B6664;
padding: 5px;
color:white;
font-weight: normal;
display: block;
opacity:0;
overflow: hidden;
}
#inputCustomer:hover + #spandiv {
position: absolute;
left: var(--finalPosition*2)+ "px"; // this value is not getting picked up
top:40px;
display: inline;
opacity:1;
}
I am running angular app, I calculate width of element and store it under variable finalposition and I want to move to left (finalposition)px. I want this style property to be applied only on hovering over the element. How to do this?
ponent.ts
ngAfterViewChecked(): void {
this.finalposition = document.getElementById('spandiv').offsetWidth;
}
ponent.html
<input id="inputCustome" type="text">
<p id="spandiv">xyzkskssss</p>
ponent.css
#inputCustomer {
text-align: center;
position: relative;
bottom: 7px;
left: 2px;
}
#spandiv {
position: absolute;
right:145px;
top: 40px;
background-color: #6B6664;
padding: 5px;
color:white;
font-weight: normal;
display: block;
opacity:0;
overflow: hidden;
}
#inputCustomer:hover + #spandiv {
position: absolute;
left: var(--finalPosition*2)+ "px"; // this value is not getting picked up
top:40px;
display: inline;
opacity:1;
}
Share
Improve this question
asked Dec 5, 2019 at 17:35
karansyskaransys
2,72910 gold badges50 silver badges91 bronze badges
2
- Hi, How to apply ngStyle only on hovering – karansys Commented Dec 5, 2019 at 17:42
- Have you tried the solution? – Adrita Sharma Commented Dec 6, 2019 at 6:23
3 Answers
Reset to default 5You can use (mouseenter)
and (mouseleave)
to set finalPosition
value.
Try:
<input id="inputCustome" type="text" (mouseenter)="finalPosition = finalPosition * 2" (mouseleave) ="finalPosition = finalPosition /2">
<p id="spandiv" [style.left]="finalPosition + 'px'" >xyzkskssss</p>
or
<input id="inputCustome" type="text" (mouseenter)="finalPosition = finalPosition * 2" (mouseleave) ="finalPosition = finalPosition /2">
<p id="spandiv" [ngStyle]="{'left': finalPosition + 'px'}" >xyzkskssss</p>
Demo
You can leverage the power of Angular directive to do this kind of stuff. You can also use the Angular events such as mouseover
, mouseenter
. For eg.
<input id="inputCustome" type="text" (mouseover)="onMouseOver()">
or You can use the directive like
<div styleHover >Hover me</div>
@Directive({
selector: '[styleHover]'
})
export class StyleOnHover {
constructor(private el: ElementRef) {}
@HostListener('mouseover') onHover(e) {
console.log(e)
console.log(this.el);
// this.el.style => change the property
}
}
To pass controller variables to SCSS files follow this approach, using CSS variables within the SCSS file
TS
constructor(private ref: ElementRef) {}
ngOnInit() {
this.initCssVars()
}
private initCssVars() {
const el = this.ref.nativeElement
el.style.setProperty('--circle-color', this.circleColor())
}
SCSS
.my-class {
color: var(--circle-color);
}
本文标签: javascriptHow to pass variable to css in AngularStack Overflow
版权声明:本文标题:javascript - How to pass variable to css in Angular - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743828226a2546040.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论