using div [ngStyle] for background-image and am looping it *ngFor, if any of image is missing ,how to show...
<div class="bg"
onError="this.src='https://www.tibs.org.tw/images/default.jpg';"
[ngStyle]="{'background-image': 'url(' + imgss.image + ')'}"
*ngFor="let imgss of prod.product_images | slice:0:1;">
</div>
how to get alternate image if there is no image on it, i have tried using onError but which works only on image tag,but here am using only div.
javascript angular angular2-directives
add a comment |
<div class="bg"
onError="this.src='https://www.tibs.org.tw/images/default.jpg';"
[ngStyle]="{'background-image': 'url(' + imgss.image + ')'}"
*ngFor="let imgss of prod.product_images | slice:0:1;">
</div>
how to get alternate image if there is no image on it, i have tried using onError but which works only on image tag,but here am using only div.
javascript angular angular2-directives
Usingsrcattribute on adivwon't work to display an image, and i doubtonErroris triggered when background image doesn't load (have you tried a console.log?).
– Kaddath
Nov 14 '18 at 8:04
My guess is you need to dovar tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL;and use the results of that to change your array elements to the default URL.
– Chris G
Nov 14 '18 at 8:09
add a comment |
<div class="bg"
onError="this.src='https://www.tibs.org.tw/images/default.jpg';"
[ngStyle]="{'background-image': 'url(' + imgss.image + ')'}"
*ngFor="let imgss of prod.product_images | slice:0:1;">
</div>
how to get alternate image if there is no image on it, i have tried using onError but which works only on image tag,but here am using only div.
javascript angular angular2-directives
<div class="bg"
onError="this.src='https://www.tibs.org.tw/images/default.jpg';"
[ngStyle]="{'background-image': 'url(' + imgss.image + ')'}"
*ngFor="let imgss of prod.product_images | slice:0:1;">
</div>
how to get alternate image if there is no image on it, i have tried using onError but which works only on image tag,but here am using only div.
javascript angular angular2-directives
javascript angular angular2-directives
edited Nov 15 '18 at 6:41
Akber Iqbal
2,0433822
2,0433822
asked Nov 14 '18 at 8:00
sam_programmersam_programmer
127
127
Usingsrcattribute on adivwon't work to display an image, and i doubtonErroris triggered when background image doesn't load (have you tried a console.log?).
– Kaddath
Nov 14 '18 at 8:04
My guess is you need to dovar tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL;and use the results of that to change your array elements to the default URL.
– Chris G
Nov 14 '18 at 8:09
add a comment |
Usingsrcattribute on adivwon't work to display an image, and i doubtonErroris triggered when background image doesn't load (have you tried a console.log?).
– Kaddath
Nov 14 '18 at 8:04
My guess is you need to dovar tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL;and use the results of that to change your array elements to the default URL.
– Chris G
Nov 14 '18 at 8:09
Using
src attribute on a div won't work to display an image, and i doubt onError is triggered when background image doesn't load (have you tried a console.log?).– Kaddath
Nov 14 '18 at 8:04
Using
src attribute on a div won't work to display an image, and i doubt onError is triggered when background image doesn't load (have you tried a console.log?).– Kaddath
Nov 14 '18 at 8:04
My guess is you need to do
var tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL; and use the results of that to change your array elements to the default URL.– Chris G
Nov 14 '18 at 8:09
My guess is you need to do
var tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL; and use the results of that to change your array elements to the default URL.– Chris G
Nov 14 '18 at 8:09
add a comment |
1 Answer
1
active
oldest
votes
<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>
Hope this will help you!
no it doesnt worked bro..thanks for ur efforts
– sam_programmer
Nov 19 '18 at 7:13
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295439%2fusing-div-ngstyle-for-background-image-and-am-looping-it-ngfor-if-any-of-ima%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>
Hope this will help you!
no it doesnt worked bro..thanks for ur efforts
– sam_programmer
Nov 19 '18 at 7:13
add a comment |
<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>
Hope this will help you!
no it doesnt worked bro..thanks for ur efforts
– sam_programmer
Nov 19 '18 at 7:13
add a comment |
<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>
Hope this will help you!
<div class="bg" [ngStyle]="{'background-image': (imgss.image) ? 'url(' + imgss.image + ')' : 'url(https://www.tibs.org.tw/images/default.jpg)' }"
*ngFor="let imgss of prod.product_images | slice:0:1;"></div>
Hope this will help you!
edited Nov 14 '18 at 8:53
Zooly
2,75431839
2,75431839
answered Nov 14 '18 at 8:04
Padmapriya VishnuvardhanPadmapriya Vishnuvardhan
772310
772310
no it doesnt worked bro..thanks for ur efforts
– sam_programmer
Nov 19 '18 at 7:13
add a comment |
no it doesnt worked bro..thanks for ur efforts
– sam_programmer
Nov 19 '18 at 7:13
no it doesnt worked bro..thanks for ur efforts
– sam_programmer
Nov 19 '18 at 7:13
no it doesnt worked bro..thanks for ur efforts
– sam_programmer
Nov 19 '18 at 7:13
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295439%2fusing-div-ngstyle-for-background-image-and-am-looping-it-ngfor-if-any-of-ima%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Using
srcattribute on adivwon't work to display an image, and i doubtonErroris triggered when background image doesn't load (have you tried a console.log?).– Kaddath
Nov 14 '18 at 8:04
My guess is you need to do
var tmp = new Image(); tmp.onerror = /* mark as dead */; tmp.src = URL;and use the results of that to change your array elements to the default URL.– Chris G
Nov 14 '18 at 8:09