小编Ste*_*fan的帖子

响应网格的六边形

我从互联网上加载了我网站上的多个图像.是否有可能在响应网格中为所有这些图像提供六边形

<div>
    <img src="link" class="Image">
</div>

<div>
    <img src="link" class="Image">
</div>
...
Run Code Online (Sandbox Code Playgroud)

我发现了多种方法,但您需要src在CSS代码中填写图像.这对我来说是不可能的,因为网站加载来自互联网的随机图像与jQuery所以我不能使用背景图像.

我试过这个:http://jsfiddle.net/8f5m5wv0/

html css css3 responsive-design css-shapes

34
推荐指数
4
解决办法
5万
查看次数

Android Studio错误:无法解析符号'查看'

我正试图从谷歌跟随这个教程用Android Studio创建你自己的Android应用程序.但是,当我按照此页面上的第4步操作时:http://developer.android.com/training/basics/firstapp/starting-activity.html Android Studio最终会出现此错误:

Cannot resolve symbol 'View'
Run Code Online (Sandbox Code Playgroud)

这就是我的代码目前的样子:

public class MainActivity extends ActionBarActivity {
    /** Called when the user clicks the Send button */
    public void sendMessage(View view) { <--- (This line ends up with the error)
        // Do something in response to button
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, …
Run Code Online (Sandbox Code Playgroud)

java android android-studio

22
推荐指数
1
解决办法
5万
查看次数

Jquery $("img").单击(function()选择器不起作用

出于某种原因,当我点击带有此JQuery代码的图像时,警报屏幕不会显示.

HTML:

<div id="example1">
 <div>
  <div>
   <div class="user">
    <img class="Image" src="images/image.jpg">
   </div>
  </div>
 </div>
</div>
Run Code Online (Sandbox Code Playgroud)

使用Javascript:

$(document).ready(function(){
 $("img").click(function(){
  alert("it works!");
 });
});
Run Code Online (Sandbox Code Playgroud)

我无法弄清楚为什么这不起作用我包括jquery库,<script>标签在div下

html jquery selector

12
推荐指数
2
解决办法
5万
查看次数

错误:"无法解析符号'@ string/edit_message'"Android Studio

我正在尝试按照android教程:http://developer.android.com/training/basics/firstapp/building-ui.html 但是当我到达你必须添加按钮的部分时,我的Android Studio会一直返回这个错误:

Cannot resolve symbol '@string/edit_message'
Cannot resolve symbol '@string/button_send'
Run Code Online (Sandbox Code Playgroud)

XML代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <EditText android:id="@+id/edit_message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="@string/edit_message" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button_send" />
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

我在这做错了什么?我无法在其他stackoverflow问题上找到正确的解决方案,我很确定我在谷歌的android教程中使用了正确的代码.

xml android

6
推荐指数
2
解决办法
1万
查看次数

Css背景视频

有人知道如何集中这个视频背景吗?

我试过了:

margin: 0 auto;
text-align: center;
Run Code Online (Sandbox Code Playgroud)

到目前为止,但这些都没有奏效.

这是我的代码.

HTML:

<video autoplay loop poster="polina.jpg" id="vid">
<source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.webm" type="video/webm">
<source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" type="video/mp4">
</video>
Run Code Online (Sandbox Code Playgroud)

CSS:

video#vid {
 position: fixed; right: 0; bottom: 0;
 min-width: 100%; min-height: 100%;
 width: auto; height: auto; z-index: -100;
 background: url(polina.jpg) no-repeat;
 background-size: cover;
 margin: 0 auto;
}
Run Code Online (Sandbox Code Playgroud)

如何调整窗口大小,如何将此视频背景居中,以便在左/右侧移除相同的数量?谢谢你的帮助!

这是我的jsfiddle:http://jsfiddle.net/pwxcvxe8/2/

html css video background

5
推荐指数
1
解决办法
5万
查看次数

Android Studio 错误:无法解析 Xml 中的符号

我正在关注 google Android Studio 第一个 Android 应用程序教程。但是当我尝试向我的应用程序添加搜索栏时,我现在遇到了 3 个奇怪的错误。

我现在就在这里,就像教程一样添加了 XML 代码。

http://developer.android.com/training/basics/actionbar/adding-buttons.html

我得到的错误:

Error:(5, 23) No resource found that matches the given name (at 'icon' with value '@drawable/ic_action_search').
Error:(6, 24) No resource found that matches the given name (at 'title' with value '@string/action_search').
Run Code Online (Sandbox Code Playgroud)

在 android:showAsAction="ifRoom" 我收到奇怪的错误:

Excecution failed for task ':app:procesDebugResources'.
Run Code Online (Sandbox Code Playgroud)

这是我的 XML 代码:

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity">
    <item android:id="@+id/action_search"
        android:icon="@drawable/ic_action_search"
        android:title="@string/action_search"
        android:showAsAction="ifRoom" />
    <item android:id="@+id/action_settings" android:title="@string/action_settings"
        android:orderInCategory="100" app:showAsAction="never" />
</menu>
Run Code Online (Sandbox Code Playgroud)

这段代码有什么问题吗?

感谢您的阅读/帮助!

java xml android android-studio

3
推荐指数
1
解决办法
1万
查看次数

用户滚动jquery时停止ScrollTop函数

当用户滚动自己时,如何停止scrollTop功能?如果我现在滚动滚动顶部功能,整个滚动故障.

        $(document).ready(function (){
            $(".header-arrow-down").click(function (){
                $('html, body').animate({
                    scrollTop: $(".page-1").offset().top
                }, 1000);
            });
            $("body").scroll(function() {
                alert("scrolling");
            });
        });
Run Code Online (Sandbox Code Playgroud)

我到目前为止尝试了这个但是警报滚动没有显示给我,我无法在谷歌找到解决方案所以我在这里问它.

我希望有人知道如何解决这个问题!

html javascript css jquery

2
推荐指数
1
解决办法
4187
查看次数

MySQL:如果行相等则求和

我想打一个SQL选择查询,选择一切,但是当client,thickness并且material是应补充同他们的"量"的价值.

我该如何创建这样的查询?

数据样本

mysql sql sum equals

0
推荐指数
1
解决办法
883
查看次数