如何让ubuntu变成两个屏幕显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何让ubuntu变成两个屏幕显示相关的知识,希望对你有一定的参考价值。
在同一个显示器里面可以让这个Ubuntu的画面切换成两个画面吗?还是说要让Ubuntu编程两个画面需要两个屏幕?!
方法:
1.桌面空白处右击鼠标选择“屏幕分辨率”选项;
2.如果有安装有两台显示器的话,就会显示下图效果,如果未显示出两台显示器的话,单击“检测”进行检测,然后点击多显示器后面的按钮框,就可以看到“复制这些显示”和“扩展这些显示”两个选项;
1)如果选择的是“复制这些显示”,那么在两个显示器上会看到一模一样的Windows 窗口。
2)如果选择的是“扩展这些显示”选项的话,扩展模式是指一个显示器内容扩展到两个显示器里,并且显示连续而不同的内容,同时可以自行定义横向或者纵向相加。如下图所示。
参考技术A 什么叫两个屏幕?~意思是两个电脑屏幕?还是一个电脑两个桌面?
compizconfig这个软件基本什么特效都可以实现了~到ubuntu论坛看看,搜索设置3D效果,里面你可以得到很多收获的~本回答被提问者采纳 参考技术B 请你把问题说得更详细些 参考技术C 任务 你懂的
如何让两个不同的元素并排显示?
【中文标题】如何让两个不同的元素并排显示?【英文标题】:How to have two different elements display side by side? 【发布时间】:2016-12-10 01:47:41 【问题描述】:如何才能让两个不同的元素并排显示? 我的意思的图片:http://prntscr.com/c1e8pn 我正在尝试做的图片:http://prntscr.com/c1e8v2
【问题讨论】:
【参考方案1】:试试这个 sn-p。
注意:请在大屏幕上观看
.content
width: 79%;
float:left;
padding: 5px;
.sidebar
width: 19%;
float:left;
padding: 5px;
.new
background-color: orange;
margin:10px;
padding: 15px;
border-radius: 4px;
color: #fff;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
</head>
<body>
<div class="content">
<div class="new">
<h2>Facebook</h2>
<p>Facebook is a for-profit corporation and online social networking service based in Menlo Park, California, United States.</p>
</div>
<div class="new">
<h2>Twitter</h2>
<p>Twitter is an online social networking service that enables users to send and read short 140-character messages called "tweets". Registered users can read and post tweets, but those who are unregistered can only read them.</p>
</div>
<div class="new">
<h2>LinkedIn</h2>
<p>LinkedIn is a business-oriented social networking service. Founded on December 14, 2002, and launched on May 5, 2003, it is mainly used for professional networking.</p>
</div>
</div>
<div class="sidebar">
<div class="new">
<h2>Google</h2>
<p>Google is an American multinational technology company specializing in Internet-related services and products that include online advertising technologies, search, cloud computing, and software</p>
</div>
<div class="new">
<h2>Yahoo</h2>
<p>Yahoo Inc. is an American multinational technology company headquartered in Sunnyvale, California. It is globally known for its Web portal, search engine Yahoo! Search, and related services, including Yahoo! Directory, Yahoo! Mail, Yahoo!</p>
</div>
</div>
</body>
</html>
【讨论】:
【参考方案2】:我不完全确定您在问什么,但我相信您缺少的标签是 display: inline-block;
标签。它允许您设置元素的宽度和高度并在同一行中。
这是您的代码示例。
.main-content
display: inline-block;
width: 68%;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
background-color: #DDD;
.content
width: 60%;
padding: 1%;
margin: 1% 1% 1% 0;
background-color: #fff;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
float: left;
.side-box
display: inline-block;
width: 22%;
float: right;
background-color: #EEE;
<div class="main-content">
<article class="content">
<header class="main-header">
<h1>NEW! Free Stuff Section!</h1>
</header>
<footer class="sub-footer">
<p>We have added a new free stuff section!</p>
</footer>
<content>
<p>bla bla bla bla bla bla bla bla bla</p>
</content>
</article>
</div>
<aside class="side-box">
<article>
<h1>Side Box Header</h1>
<p>Side Box Text</p>
</article>
</aside>
希望这会有所帮助!
【讨论】:
以上是关于如何让ubuntu变成两个屏幕显示的主要内容,如果未能解决你的问题,请参考以下文章