Jump to content

How set background image uniloginform?


Ulugbek

Recommended Posts

Hi Ulugbek!

 

While, you can use this "solution", try:

procedure TUniLoginForm1.UniLoginFormCreate(Sender: TObject);
begin  
  UniSession.AddJS('document.body.style.background = ''url("/files/Chrysanthemum.jpg") repeat scroll 0% 0%''');
end;

Best regards.

  • Upvote 1
Link to comment
Share on other sites

  • 6 months later...
  • 5 months later...

not work for me why ?

procedure TfrmLogin.UniLoginFormCreate(Sender: TObject);
begin
  UniSession.AddJS('document.body.style.background = ''url("/files/bg01.jpg") repeat scroll 0% 0%''');
  
// show image
added this code for strech not work and not show image  
  UniSession.AddJS('Ext.onReady(function(){document.body.style["background-size"] = ''100% 100%''})');
end;
Link to comment
Share on other sites

 

not work for me why ?

procedure TfrmLogin.UniLoginFormCreate(Sender: TObject);
begin
  UniSession.AddJS('document.body.style.background = ''url("/files/bg01.jpg") repeat scroll 0% 0%''');
end;

 

Hi,

 

Now you can use this:

 

UniMainModule->LoginBackground

 

Best regards.

Link to comment
Share on other sites

  • 2 weeks later...

Hi Dear Delphi Developer!

I set with: UniSession.AddJS('document.body.style.background = ''url("/files/bg.jpg") repeat scroll 0% 0%''');

But Why BackGround Image for login form shows in Standalone Mode and not Shown in isapi mode under iis?

If I can add js file to the server before runing UniGui please tel me script Format for that?

Regards

Link to comment
Share on other sites

OK! I resolved it with set in Costum CSS:

background: #fafafa url(files/image.png) center top repeat;

 

its Work for me under iis!

 

there is some other sample for use:

 

body .site {
background-color: #fafafa;
}

 

Alternately, you could add a background pattern to it should you desire:

body .site {
background: #fafafa url(http://yourdomain.com/path/to/your/image.png) center top repeat;
}

 

And finally, you could implement a fullscreen image if needed:

body .site {
background: #fafafa url(http://yourdomain.com/path/to/your/image.jpg) center center no-repeat;
-webkit-background-size: cover;
background-size: cover;
}

 

 

Regards

Link to comment
Share on other sites

  • 1 year later...

Hi All

How add this css class or where add for login form ?

Anybody help me pls

 

OK! I resolved it with set in Costum CSS:

background: #fafafa url(files/image.png) center top repeat;

 

its Work for me under iis!

 

there is some other sample for use:

 

body .site {
background-color: #fafafa;
}

 

Alternately, you could add a background pattern to it should you desire:

body .site {
background: #fafafa url(http://yourdomain.com/path/to/your/image.png) center top repeat;
}

 

And finally, you could implement a fullscreen image if needed:

body .site {
background: #fafafa url(http://yourdomain.com/path/to/your/image.jpg) center center no-repeat;
-webkit-background-size: cover;
background-size: cover;
}

 

 

Regards

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...