inherit
169267
0
Oct 19, 2024 4:26:56 GMT -8
Mike
Praise God Almighty!
1,533
July 2011
riccetts
|
Post by Mike on Feb 13, 2016 8:44:11 GMT -8
I have var image but can't seem to make the image appear with $ ('#wrapper').css('background-image','url('+image+')','background-repeat','no-repeat'); can I get a little please
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Feb 13, 2016 11:08:49 GMT -8
I have var image but can't seem to make the image appear with $ ('#wrapper').css('background-image','url('+image+')','background-repeat','no-repeat'); can I get a little please bad syntax perhaps var image= 'http://storage.proboards.com/1/a/DGVod4K4MidrAKgq1YTi.png'; $('#wrapper').css({'background-image':'url('+image+')','background-repeat':'no-repeat'});
However if you notice that you may not see the image, it is hidden by something var image= 'http://storage.proboards.com/1/a/DGVod4K4MidrAKgq1YTi.png'; $('#wrapper').css({'background-image':'url('+image+')','background-repeat':'repeat'});
That will repeat the image to test if perhaps it is being covered
|
|
inherit
169267
0
Oct 19, 2024 4:26:56 GMT -8
Mike
Praise God Almighty!
1,533
July 2011
riccetts
|
Post by Mike on Feb 13, 2016 11:24:13 GMT -8
Thanks for the insight I'll try it but i'm using an image from my computer. I uploaded it to utility images.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Feb 13, 2016 13:19:54 GMT -8
Thanks for the insight I'll try it but i'm using an image from my computer. I uploaded it to utility images. You must have a direct link from an image host that allows it like imgur.com
|
|
inherit
169267
0
Oct 19, 2024 4:26:56 GMT -8
Mike
Praise God Almighty!
1,533
July 2011
riccetts
|
Post by Mike on Feb 13, 2016 13:27:52 GMT -8
Huh so why is there an option there for a computer image?
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Feb 13, 2016 13:39:11 GMT -8
Huh so why is there an option there for a computer image? Most sites allow you to let other people download the image. But without sharing it directly. You need hotlinking
|
|
inherit
169267
0
Oct 19, 2024 4:26:56 GMT -8
Mike
Praise God Almighty!
1,533
July 2011
riccetts
|
Post by Mike on Feb 13, 2016 13:51:01 GMT -8
Ok thanks man
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
8,986
December 2005
horace
Wormo's Mini-Profile
|
Post by Chris on Feb 14, 2016 8:14:22 GMT -8
I'm not sure what "uploaded it to utility images" means but if you're saying you used the image tab while in plugin build mode to upload the image then yes you can use that by inserting it in your code as a variable that will be replaced by an actual url when the code is delivered to a browser. So for example you uploaded a file from your computer named "DGVod4K4MidrAKgq1YTi.png" then you'll see it is given the name "DGVod4K4MidrAKgq1YTi" by default (you can change that usable name to anything you want by clicking that icon next to the name). You then reference the image in your code by the name using pb.plugin.get('my_plugin_id').images.DGVod4K4MidrAKgq1YTi (JS Component) or $[plugin.images.DGVod4K4MidrAKgq1YTi] ( headers/footers component). To tie that in with the given example var image = pb.plugin.get('my_plugin_id').images.DGVod4K4MidrAKgq1YTi; I bring this up only because imgur has recently modified their TOS regarding using their service for content delivery and have already started blocking entire domains for this infraction [ read]. Thankfully Proboards forums are still able to access the service but that could change in an instant and plugins that rely on images hosted there could be seriously impacted almost as much as forums that rely on them to host hundreds of images.
|
|
inherit
169267
0
Oct 19, 2024 4:26:56 GMT -8
Mike
Praise God Almighty!
1,533
July 2011
riccetts
|
Post by Mike on Feb 14, 2016 14:21:31 GMT -8
ok that explains it. so i can use images off my computer. thanks for the info
|
|