Questions tagged «background»

背景通常是指容器元素内容背后的呈现-通常在网页,Windows窗体或其他UI表示媒体上。

6
如何在WPF中更改Button MouseOver的背景?
我的页面上带有此XAML的按钮: <Button Content="Button" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="50" Height="50" HorizontalContentAlignment="Left" BorderBrush="{x:Null}" Foreground="{x:Null}" Margin="50,0,0,0"> <Button.Style> <Style TargetType="Button"> <Setter Property="Background" Value="Green"/> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Background" Value="Red"/> </Trigger> </Style.Triggers> </Style> </Button.Style> </Button> 但是,当我将鼠标放在按钮上时,按钮的背景会更改为默认窗口的灰色背景。有什么问题? 这是鼠标悬停之前和之后的按钮图片: 之前: 之后:

10
div背景颜色,以更改悬停
我正在尝试将鼠标悬停在div的背景颜色上。 div {background:white;} div a:hover {background:grey; 宽度:100%; 显示:块; 文字修饰:无;} 只有 div内的链接获得背景色。 如何使整个div获得该背景色? 谢谢 编辑: 如何使整个div充当链接-当您单击该div上的任意位置时,将您带到某个地址。
91 css  colors  background  hover 



8
我可以仅对div的背景图像设置不透明度吗?
假设我有 <div class="myDiv">Hi there</div> 我想提出一个background-image并给它一个opacity的0.5-但我想,我写的文字将有充分的不透明度(1)。 如果我这样写CSS .myDiv { opacity:0.5 } 一切都会变得不透明-我不想要那样。 所以我的问题是–如何获得具有完全不透明度文本的低不透明度背景图像?

2
从扩展后台或弹出框到内容脚本的sendMessage不起作用
我知道这个问题已经以不同的方式反复提出,但是我尝试遍历所有答案(希望我没有错过任何人),但没有一个对我有用。 这是我的扩展程序代码: 表现: { "name": "test", "version": "1.1", "background": { "scripts": ["contextMenus.js"] }, "permissions": ["tabs", "<all_urls>", "contextMenus"], "content_scripts" : [ { "matches" : [ "http://*/*" ], "js": ["jquery-1.8.3.js", "jquery-ui.js"], "css": [ "jquery-ui.css" ], "js": ["openDialog.js"] } ], "manifest_version": 2 } contextMenus.js function onClickHandler(info, tab) { if (info.menuItemId == "line1"){ alert("You …

4
iOS KeyChain无法从后台获取值
我目前在iOS KeyChain中存储用户名(电子邮件)以及电子邮件和密码的盐化哈希。我使用的是这里找到的ARC'ified版本。 KeychainItemWrapper *wrapper = [[KeychainItemWrapper alloc] initWithIdentifier:@"MyCustomIdentifier" accessGroup:nil]; [wrapper setObject:APP_NAME forKey:(__bridge id)kSecAttrService]; [wrapper setObject:email forKey:(__bridge id)kSecAttrAccount]; [wrapper setObject:token forKey:(__bridge id)kSecValueData]; 当我需要在应用程序处于活动状态时为网络调用提取令牌时,一切都很好。它适用于从干净启动启动的登录以及整个网络中的所有网络调用。当应用程序在后台运行时,麻烦就开始了。 请记住,这只是偶尔发生,我还没有将其固定到特定的iOS版本或设备。 用户跳到一个位置(区域监视),我想用其状态更新服务器。我尝试将令牌从钥匙串中拔出,就像我对其他每个网络呼叫所做的一样,并更新状态。但是对于某些用户,该值为nil。没有它,我将无法更新网络内容。为什么这对大多数人有用,但对少数人却无效? KeychainItemWrapper *wrapper = [[KeychainItemWrapper alloc] initWithIdentifier:@"MyCustomIdentifier" accessGroup:nil]; NSString *token = [wrapper objectForKey:(__bridge id)kSecValueData]; 我回到了非ARC版本的keychainwrapper,但是我仍然得到相同的结果。我对此表示感谢。这只是我用户的一小部分,但这是我要解决的问题,不用担心。提前致谢。 另外,我所有的后台工作都在backgroundTask中进行设置,以防止事情超时。我在钥匙串周围的工作上没有任何问题,但是在我的令牌填满之前,我不会让事情继续进行。 编辑 我发现我的问题是他们的钥匙串没有从后台获取值。我将在下面发布答案并接受它,因为我觉得这个问题以后可能对其他人有价值。

4
堆叠的半透明盒子的颜色取决于订单?
为什么两个堆叠的半透明盒子的最终颜色取决于顺序? 如何使两种情况下的颜色相同? .a { background-color: rgba(255, 0, 0, 0.5) } .b { background-color: rgba(0, 0, 255, 0.5) } <span class="a"><span class="b"> Color 1</span></span> <span class="b"><span class="a">Different Color 2</span></span> 运行代码段隐藏结果展开摘要



2
如何以编程方式在自定义标题栏上设置背景颜色渐变?
有很多教程和有关实现自定义标题栏的SO问题。但是,在我的自定义标题栏中,我为背景设置了自定义渐变,我想知道如何在代码中动态设置它。 这是我的自定义标题栏的调用位置: requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); setContentView(R.layout.foo_layout); getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_bar); 这是我的custom_title_bar: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@layout/custom_title_bar_background_colors"> <ImageView android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/title_bar_logo" android:gravity="center_horizontal" android:paddingTop="0dip"/> </LinearLayout> 如您所见,线性布局的背景是由这个人定义的: <shape xmlns:android="http://schemas.android.com/apk/res/android"> <gradient android:startColor="#616261" android:endColor="#131313" android:angle="270" /> <corners android:radius="0dp" /> </shape> 我想做的是在我的代码中动态设置那些渐变颜色。我不想像现在一样在我的XML文件中对其进行硬编码。 如果您有更好的设置背景渐变的方法,我欢迎所有想法。 先感谢您!!


9
背景图片可以大于div本身吗?
我有一个100%宽度的页脚div。高约50像素,具体取决于其内容。 是否可以为#footer提供背景图像,从而使该div溢出? 该图像约为800x600px,我希望将其放置在页脚的左下角。它的工作方式应该类似于我网站的背景图片,但是我已经在自己的身体上设置了背景图片。我需要在我的网站的左下角放置另一个图片,并且#footer div十分适合。 #footer { clear: both; width: 100%; margin: 0; padding: 30px 0 0; background:#eee url(images/bodybgbottomleft.png) no-repeat left bottom fixed; } 图像设置为页脚,但是不会溢出div。有可能做到这一点吗? overflow:visible 没有做这份工作!
76 css  image  background 

6
Android:在应用被杀死时保持服务运行
IntentService即使应用被杀死,我也希望在后台继续运行。“杀死”的意思是长时间按主页按钮->查看所有正在运行的应用程序->将我的应用程序滑到一边->应用程序被杀死,或者长时间按后退按钮->应用程序被杀死 我的代码如下。在我的MainActivity中: Intent intent = new Intent(this, MyService.class); this.startService(intent); 在我的MyService中: public class MyService extends IntentService { @Override protected void onHandleIntent(Intent intent) { System.out.println("MyService started"); run(); } private void run() { while (true){ System.out.println("MyService still running"); doSomething(); waitSomeTime(); } } } 打开应用程序后,我看到该服务正在运行。通过主页按钮最小化应用程序时,它仍在运行。通过后退按钮关闭应用程序时,它仍在运行。但是,如果我如上所述杀死它,它将停止。我该如何解决?


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.