Je voudrai faire ça : http://pagedegarde.net/portfolio/latunisienne
Ce que j'aurai beaucoup aimé, c'est un effet où on a l'impression que l'image (le rectangle noir) sort du cercle. Comme si l'arc de cercle était une boite et que dans cette boite, il y avait le rectangle noir qui essayait d'en sortir.
Une sorte de fente dans lequel le carré noir rentre. Tu vois un peu ?
Un peu comme ça : http://hpics.li/b003a39
En partant de cet ECM :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101 | \documentclass[11pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{thmtools}
\declaretheorem[thmbox=L]{boxtheorem L}
\declaretheorem[thmbox=M,preheadhook={\xdef\restorepagetotal{\pagetotal=\the\pagetotal}\pagetotal=0pt },postfoothook=\restorepagetotal]{Case}
\declaretheorem[thmbox=S]{boxtheorem S}
\usepackage[pages=some]{background}
\begin{document}
\begin{titlepage}
\begin{center}
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.south west)},shift={(0,0)},scale=1]
\fill [red] (0,0) rectangle (100,10);
\end{scope}
\end{tikzpicture}
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.south)},shift={(0,0)},scale=1]
\fill[fill=white] (0,17) circle (80ex);
%\shade[ball color=blue,opacity=.6] (0,-5) circle (80ex);
\end{scope}
\end{tikzpicture}
\begin{minipage}{0.4\textwidth}
\begin{flushleft}
\includegraphics[width=0.75\textwidth]{example-image}
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright}
\includegraphics[width=0.75\textwidth]{example-image}
\end{flushright}
\end{minipage}
\textsc{\Large Ecole}\\[1.5cm]
\textsc{\Large }\\[0.5cm]
% Title
{ \huge \bfseries Titre}\\[0.4cm]
\vspace{1cm}
% Author and supervisor
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
Nom \\
Prénom \\
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
Nom \\
Prénom
\end{flushright}
\end{minipage}
{\large \today}
\begin{tikzpicture}[remember picture, overlay]
\begin{scope}[shift={(current page.south)},shift={(0,0)},scale=1]
\node[inner sep=0pt] (russell) at (0,7){\includegraphics[width=0.75\textwidth]{example-image}};
\end{scope}
\end{tikzpicture}
% Bottom of the page
\end{center}
\end{titlepage}
\end{document}
|