gpt4 book ai didi

php - 在php中隐藏图像并实现css

转载 作者:行者123 更新时间:2023-11-28 09:53:34 25 4
gpt4 key购买 nike

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<style>
#game{
width: 200px;
display: block;
margin-left: auto;
margin-right: auto;



}

</style>
</head>
<body>
<div id="game">
<?php

function display() {
$items = array(
'<a href="?item=rock"> <br/><img src= "img/rock.png" width="150" height="150" alt="rock"/></a>',
'<a href="?item=scissors"> <br/><img src="img/scissors.png" width="150" height="150" alt="scissors"></a>',
'<a href="?item=paper"> <br/><img src="img/paper.jpg" width="150" height="150" alt="paper"></a>'
);
foreach ($items as $item => $value):
echo $value;


endforeach;
if (isset($_GET['item']) == true):
//rock paper and scissors types
$item = array('rock', 'paper', 'scissors');
//users choice

$user_Choice = $_GET['item'];
if ($user_Choice == "rock"):
$user_Choice = $items[0];
endif;
if ($user_Choice == "scissors"):
$user_Choice = $items[1];
endif;
if ($user_Choice == "paper"):
$user_Choice = $items[2];
endif;

//random computer generated choice
$random_Num = rand(0, 2);
$computer_Choice = $items[$random_Num];
echo $user_Choice;
echo $computer_Choice;

if ($user_Choice == $items[0] && $computer_Choice == $items[0]):
echo "tie";
endif;
if ($user_Choice == $items[0] && $computer_Choice == $items[2]):
echo "you lose";
endif;
if ($user_Choice == $items[0] && $computer_Choice == $items[1]):
echo "you win";
endif;
if ($user_Choice == $items[2] && $computer_Choice == $items[0]):
echo "you win";
endif;
if ($user_Choice == $items[2] && $computer_Choice == $items[2]):
echo "you tie";
endif;
if ($user_Choice == $items[2] && $computer_Choice == $items[1]):
echo "you lose";
endif;
if ($user_Choice == $items[1] && $computer_Choice == $items[0]):
echo "you lose";
endif;
if ($user_Choice == $items[1] && $computer_Choice == $items[2]):
echo "you win";
endif;
if ($user_Choice == $items[1] && $computer_Choice == $items[1]):
echo "you tie";
endif;

endif;
}

display();
?>
</div>
</body>
</html>

大家好!我在玩这段代码时遇到了一些问题,它是我为了好玩而工作的剪刀石头布,但遇到了问题。实际上有几个问题。我首先想知道如何将 css 合并到 php 中,我希望能够将我的图片水平而不是垂直放置在一起。这段代码的第二个问题是,当我点击石头布或剪刀时,它显示用户选择计算机选择“平局输赢声明”,但原始图片留在屏幕上。我如何更改我的代码,以便当我单击石头布或剪刀时,原来的 3 张图片被隐藏,剩下的唯一图像是 computer_choice 和 user_choice ...感谢阅读,如果你帮助我,非常感谢!

最佳答案

关于css,你可能没有注意到,但它实际上已经在你的代码中了,它是style 所包含的部分。在你的 head 中标记部分。也就是说,您不需要 css 来重新排列图片。注意 <br/>图片数组中的标签,它们基本上是html术语中的换行符。只需从第二张和第三张图片中删除标签即可。

            $items = array(
'<a href="?item=rock"> <br/><img src= "img/rock.png" width="150" height="150" alt="rock"/></a>',
'<a href="?item=scissors"> <img src="img/scissors.png" width="150" height="150" alt="scissors"></a>',
'<a href="?item=paper"> <img src="img/paper.jpg" width="150" height="150" alt="paper"></a>'
);

第二个问题,隐藏图片。有很多不同的方法可以做到这一点,最常见的方法是使用 javascript。但是,考虑到您的代码结构,最简单的方法似乎是用检查包装打印代码。

if (isset($_GET['item']) != true):
foreach ($items as $item => $value):
echo $value;
endforeach;
endif;

关于php - 在php中隐藏图像并实现css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24989149/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com